forked from codeuino/social-platform-donut-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"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 .",
"test": "env-cmd -f .env.test jest --detectOpenHandles && codecov -t 2b12ad97-07e0-45b2-a569-8aa2fd3e8c54"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"validator": "^10.11.0"
},
"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"
}
}