-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "loopback-model-sample-app",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"posttest": "npm run lint && nsp check"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^1.3.0",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-component-model-diagram": "^0.3.0",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"nsp": "^2.1.0"
},
"bugs": {
"url": "https://github.com/gfornari/loopback-model-sample-app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gfornari/loopback-model-sample-app.git"
},
"license": "MIT",
"description": "Simple Loopback application with some relations between models."
}