-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 987 Bytes
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "final-project",
"version": "1.0.0",
"description": "It's the final project :trumpet:",
"main": "app.js",
"scripts": {
"test": "jest --runInBand",
"start": "node app.js",
"reset": "node utils/reset_db.js",
"seed": "node utils/seed_db.js",
"debug": "jest --runInBand --detectOpenHandles",
"mon": "nodemon --exec npm start"
},
"jest": {
"rootDir": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CS546-JAMS/final-project.git"
},
"author": "Mark Freeman",
"license": "ISC",
"bugs": {
"url": "https://github.com/CS546-JAMS/final-project/issues"
},
"homepage": "https://github.com/CS546-JAMS/final-project#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"moment": "^2.23.0",
"mongodb": "^3.1.9",
"mongoose": "^5.3.12",
"validator": "^10.9.0"
},
"devDependencies": {
"jest": "^23.6.0"
}
}