-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "swapi-graphql",
"version": "1.0.0",
"description": "Starwars GraphQL API",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn --no-notify src/index.ts",
"db:setup": "ts-node ./src/test-utils/setup.ts",
"test": "npm run db:setup && jest --forceExit",
"test:watch": "npm run db:setup && jest --watch",
"lint": "tslint --project tsconfig.json --format codeFrame --force",
"lint:fix": "tslint --fix --project tsconfig.json --force"
},
"repository": "https://github.com/ely-alamillo/swapi-graphql.git",
"author": "Ely Alamillo <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"apollo-server-express": "^2.4.8",
"cors": "^2.8.5",
"express": "^4.16.4",
"graphql": "^14.2.1",
"pg": "^7.9.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.1",
"typeorm": "^0.2.16"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/node": "^11.13.4",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"prettier": "^1.16.4",
"prettier-tslint": "^0.4.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"ts-node-dev": "^1.0.0-pre.32",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.3",
"typescript-tslint-plugin": "^0.3.1"
}
}