-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
{
"name": "ufree",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./bin/www",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"start:test": "PORT=3030 MONGODB_URL='mongodb://127.0.0.1/UFree_test' npm start",
"test:unit": "jest",
"test:integration": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbdirizakIdris/UFreeApp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbdirizakIdris/UFreeApp/issues"
},
"engines": {
"node": ">=16.14.2"
},
"homepage": "https://github.com/AbdirizakIdris/UFreeApp#readme",
"dependencies": {
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"express": "^4.18.1",
"express-session": "^1.17.2",
"hbs": "^4.2.0",
"http-errors": "^2.0.0",
"method-override": "^3.0.0",
"mongodb": "^4.5.0",
"mongoose": "^6.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemon": "^2.0.16"
},
"devDependencies": {
"cypress": "^9.6.1",
"eslint": "^8.14.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"
}
}