-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
54
55
56
57
{
"name": "api-express-js-octolion-ecommerce",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"start": "node index",
"build": "NODE_ENV=production cd public/assets && cleancss -o main.min.css main.css",
"dev": "nodemon index",
"test:cover": "nyc npm run test",
"dev:inspect": "nodemon --inspect index",
"dev:debug": "DEBUG=express:*,app:* npm run dev",
"debug": "DEBUG=express:*,app:* npm run start",
"test": "mocha --exit"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@sentry/node": "^5.13.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"boom": "^7.3.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"helmet": "^3.21.3",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.4",
"mongoose": "^5.9.2",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"pug": "^2.0.4"
},
"devDependencies": {
"chalk": "^3.0.0",
"clean-css-cli": "^4.3.0",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.0",
"supertest": "^4.0.2"
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}