-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 892 Bytes
/
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
{
"name": "drop-zone-be",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.10",
"eslint": "^7.7.0",
"jest": "^26.4.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chance": "^1.1.6",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"superagent": "^6.0.0",
"superagent-throttle": "^1.0.1"
}
}