-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 987 Bytes
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 987 Bytes
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
{
"name": "eat-up-backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "mocha --exit",
"server": "nodemon server.js",
"serve": "nodemon server.js",
"s": "nodemon server.js",
"debug-server": "DEBUG=express:* nodemon server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.506.0",
"bcrypt": "^3.0.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.1",
"jsonwebtoken": "^8.1.1",
"mongodb": "^2.2.31",
"mongoose": "^4.12.0",
"mongoose-dateonly": "^1.0.6",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.8.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"standard": "^10.0.3"
},
"engines": {
"node": "10.15.0",
"npm": "6.4.1"
}
}