-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
59
60
61
62
63
64
65
66
67
68
{
"name": "donut-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "env-cmd -f .env.dev nodemon ./bin/www",
"pretest": "eslint --ignore-path .gitignore .",
"lint": "eslint .",
"test": "env-cmd -f .env.test jest --detectOpenHandles && codecov -t 2b12ad97-07e0-45b2-a569-8aa2fd3e8c54"
},
"dependencies": {
"@sendgrid/mail": "^7.0.0",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.691.0",
"base-64": "^0.1.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "^4.16.4",
"googleapis": "^56.0.0",
"helmet": "^4.1.0",
"hpp": "^0.2.3",
"http-status-codes": "^1.4.0",
"ioredis": "^4.17.3",
"jimp": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongo-sanitize": "^1.1.0",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"validator": "^10.11.0",
"winston": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testTimeout": 30000
},
"devDependencies": {
"codecov": "^3.6.1",
"env-cmd": "^10.0.1",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^1.18.9",
"supertest": "^4.0.2"
}
}