-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
58
59
60
61
{
"name": "platzi-express",
"version": "0.0.1",
"description": "Example express app",
"main": "index.js",
"scripts": {
"start": "node index",
"build": "NODE_ENV=production cd public/assets && cleancss -o main.min.css main.css",
"dev": "nodemon index",
"dev:inspect": "nodemon --inspect index",
"dev:debug": "set DEBUG=express:*,app:*& npm run dev",
"debug": "set DEBUG=express:*,app:*& npm run start",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "mocha --exit",
"test:cover": "nyc npm run test"
},
"keywords": [
"express",
"node.js"
],
"author": "John Serrano <jandreys15@gmail.com> (https://twitter.com/Jandrey15)",
"license": "MIT",
"dependencies": {
"@sentry/node": "5.6.2",
"bcrypt": "3.0.6",
"body-parser": "1.19.0",
"boom": "7.3.0",
"debug": "4.1.1",
"dotenv": "8.1.0",
"express": "4.17.1",
"helmet": "^3.21.0",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"mongodb": "3.3.2",
"passport": "0.4.0",
"passport-http": "0.3.0",
"passport-jwt": "4.0.0",
"pug": "2.0.4"
},
"devDependencies": {
"chalk": "2.4.2",
"clean-css-cli": "4.3.0",
"mocha": "6.2.0",
"nodemon": "1.19.1",
"nyc": "14.1.1",
"proxyquire": "2.1.3",
"sinon": "7.4.2",
"standard": "13.1.0",
"supertest": "4.0.2"
},
"nyc": {
"all": true,
"include": [
"routes",
"services",
"lib",
"utils"
]
}
}