-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "base",
"version": "1.0.0",
"description": "Example of production-ready NodeJS module",
"main": "index.js",
"scripts": {
"check:updates": "npx npm-check-updates",
"start": "pm2 start ecosystem.json --no-daemon",
"stop": "pm2 stop ecosystem.json",
"delete": "pm2 delete ecosystem.js",
"watch": "nodemon ./bin/webserver.js",
"lint": "eslint *.js",
"pretest": "cross-env NODE_ENV=development npm run lint",
"test": "cross-env NODE_ENV=development nyc mocha spec/**/*.spec.js --timeout 5000",
"test:watch": "npm test -- --watch",
"coverage": "cross-env NODE_ENV=development nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Stefan Tertan",
"license": "MIT",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"http-status": "^1.3.2",
"joi": "^14.3.1",
"nyc": "^14.1.1",
"pm2": "^3.5.1",
"sequelize": "^5.19.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"faker": "^4.1.0",
"got": "^9.6.0",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"sqlite3": "^4.1.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.1"
}
}