-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "api",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "eslint .",
"start": "nodemon .",
"lintfix": "eslint --fix",
"posttest": "yarn lint",
"test": "nyc --check-coverage -r text-summary npm run test:unit",
"test:unit": "NODE_ENV=test mocha --recursive",
"test:unit:watch": "NODE_ENV=test mocha -w --recursive",
"test:cover": "nyc -r text-summary npm run test:unit && nyc -r html report"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^3.10.0",
"loopback": "^3.22.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^6.2.0",
"loopback-connector-mysql": "^5.4.1",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "api"
}