-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "stateless-microservice",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "npm run clean && babel src -d dist",
"clean": "rimraf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"serve": "nodemon -r ./load-config.js --exec babel-node src/bin/www.js",
"start": "node ./dist/bin/www.js",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha",
"test:watch": "mocha -w"
},
"dependencies": {
"chai": "^4.2.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv-extended": "^2.8.0",
"express": "~4.16.1",
"express-validator": "^6.4.0",
"fast-json-patch": "^3.0.0-1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jimp": "^0.10.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.1.1",
"mockdate": "^2.0.5",
"morgan": "~1.9.1",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2"
}
}