-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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": "express-graphql-todo",
"version": "1.0.0",
"main": "dist",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & NODE_ENV=development nodemon dist",
"start:debug": "cross-env DEBUG=express-graphql-todo:* yarn start",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/**.ts'",
"lint:watch": "yarn lint -- --watch"
},
"dependencies": {
"assert": "^2.0.0",
"bcrypt": "^5.0.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.5",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-jwt": "^5.3.1",
"express-session": "^1.16.2",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"tslint": "^5.20.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/compression": "1.0.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/graphql": "^14.5.0",
"@types/mongodb": "^3.3.1",
"@types/mongoose": "^5.5.17",
"nodemon": "^1.19.2",
"typescript": "^3.6.3"
}
}