-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.96 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
52
53
54
55
56
57
58
{
"name": "express-typescript-rest-starter",
"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": {
"@graphql-codegen/cli": "^1.1.1",
"@graphql-modules/core": "^0.7.0",
"@sendgrid/mail": "^6.3.1",
"apidoc": "^0.17.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"graphql": "^14.2.1",
"graphql-codegen-typescript-common": "^0.18.1",
"graphql-codegen-typescript-server": "^0.18.1",
"graphql-import-node": "^0.0.2",
"graphql-tag": "^2.10.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"nodemailer": "^5.1.1",
"nodemailer-smtp-transport": "^2.7.4",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"validator": "^10.11.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/morgan": "^1.7.35",
"@types/nodemailer": "^4.6.6",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/validator": "^10.9.0",
"@types/winston": "^2.4.4"
}
}