-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 951 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 951 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
{
"name": "app",
"version": "1.0.0",
"author": "Michelle Chai",
"license": "MIT",
"main": "server.js",
"scripts": {
"prod": "node server.js",
"postinstall": "./docker/heroku.sh",
"start": "nodemon server.js",
"test": "mocha --exit",
"frontend-test": "cd ./frontend && yarn test"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-mongodb-session": "^2.4.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"sinon": "^11.1.1"
},
"nodemonConfig": {
"ignore": [
"public/*",
"frontend/*",
"docker/*"
],
"legacyWatch": true
}
}