-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "charity-apr2020",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"start:dev": "PORT=3000 MONGODB_URL='mongodb://localhost/re_engage' npm start ",
"start:test": "PORT=3030 MONGODB_URL='mongodb://localhost/re_engage_test' npm start ",
"start:prod": "npm start",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest",
"test:integration": "cypress run"
},
"dependencies": {
"@google/maps": "^1.1.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-handlebars": "^4.0.4",
"hbs": "^4.1.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"lodash": "^4.17.19",
"mongoose": "^5.9.20",
"morgan": "~1.9.1",
"nodemon": "^2.0.4"
},
"devDependencies": {
"cypress": "^4.8.0",
"jest": "^25.5.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"views"
],
"collectCoverage": true,
"coverageDirectory": "./coverage"
}
}