forked from ManuelaIacobovici/acebook-mern-water-team
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 925 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": "acebook",
"version": "0.0.0",
"description": "Template for the AceBook project",
"license": "CC BY-NC-SA",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"start:test": "DB_NAME='farcebook_TEST' npm start",
"test": "jest --runInBand"
},
"engines": {
"node": ">=18.1.0"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"express": "~4.16.1",
"express-session": "^1.17.2",
"hbs": "^4.1.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"method-override": "^3.0.0",
"mongodb": "^3.4.1",
"mongoose": "^5.8.11",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"styled-components": "^5.3.10",
"superagent": "^8.0.0",
"supertest": "^6.2.4"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^2.0.22"
},
"nodemonConfig": {
"ext": "js,hbs"
}
}