-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "v1",
"version": "1.0.0",
"description": "YelpCamp v1 (my second time making it)",
"main": "app.js",
"scripts": {
"test": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"start": "node app.js",
"dev": "nodemon app.js"
},
"author": "Jacob Grisham",
"license": "UNLICENSED",
"dependencies": {
"@sentry/node": "^6.15.0",
"@sentry/tracing": "^6.15.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"locus": "^2.0.4",
"method-override": "^3.0.0",
"moment": "^2.29.2",
"mongodb": "^3.7.3",
"mongoose": "^5.13.13",
"morgan": "^1.10.0",
"node-geocoder": "^3.28.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.3.4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-junit": "^12.3.0"
},
"jest-junit": {
"outputDirectory": "./coverage/jest"
}
}