-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.67 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
46
47
48
49
50
51
{
"name": "graphql-modules-starter-kit",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"gql-gen": "graphql-codegen",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"apidoc": "./node_modules/.bin/apidoc -i src/ -o docs/ --silent",
"dev:start": "npm-run-all lint build apidoc && ts-node ./src/server.ts",
"dev:start-inspect": "npm-run-all lint build apidoc && node -r ts-node/register --inspect ./src/server.ts",
"dev": "NODE_ENV=development node_modules/.bin/nodemon --watch src -e ts --exec yarn dev:start",
"dev-debug": "NODE_ENV=development node_modules/.bin/nodemon --watch src -e ts --exec yarn dev:start-inspect",
"start": "node ./dist/server.js",
"prod": "yarn build && yarn start"
},
"dependencies": {
"apidoc": "^0.29.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"express-graphql": "^0.12.0",
"graphql": "^15.5.3",
"graphql-import-node": "^0.0.4",
"graphql-modules": "^1.4.4",
"graphql-tag": "^2.10.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3",
"uuid": "^8.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.2",
"@types/cors": "^2.8.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.9.0",
"@types/morgan": "^1.7.35",
"@types/winston": "^2.4.4"
}
}