forked from AKCDNG/acebook-MakeBook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 KB
/
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
41
42
43
44
{
"name": "acebook",
"version": "0.0.0",
"description": "Template for the AceBook project",
"license": "CC BY-NC-SA",
"private": true,
"scripts": {
"lint": "eslint .",
"start": "nodemon ./bin/www",
"start:test": "PORT=3030 MONGODB_URL='mongodb://0.0.0.0/acebook_test' npm start",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:unit": "jest",
"test:integration": "cypress run"
},
"engines": {
"node": ">=18.1.0"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.2",
"hbs": "^4.1.0",
"http-errors": "~1.6.3",
"method-override": "^3.0.0",
"mongodb": "^3.4.1",
"mongoose": "^5.8.11",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.15"
},
"devDependencies": {
"cypress": "^9.5.1",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.10.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^10.0.0",
"jest": "^27.5.1"
},
"nodemonConfig": {
"ext": "js,hbs"
}
}