-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 898 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
{
"name": "chaptrs",
"version": "0.0.0",
"description": "Template for the Chaptrs project",
"license": "CC BY-NC-SA",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"start:test": "MONGODB_URL='mongodb://0.0.0.0/chaptrs_test' npm start",
"test": "jest"
},
"engines": {
"node": ">=18.1.0"
},
"dependencies": {
"bootstrap": "^5.3.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.18.2",
"express-session": "^1.17.2",
"hbs": "^4.1.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mongodb": "^3.4.1",
"mongoose": "^5.8.11",
"morgan": "~1.9.1",
"nodemon": "^2.0.15",
"react-alert": "^7.0.3",
"superagent": "^8.0.0",
"supertest": "^6.2.4"
},
"devDependencies": {
"jest": "^27.5.1"
},
"nodemonConfig": {
"ext": "js,hbs"
}
}