forked from strongloop/loopback-example-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 824 Bytes
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
{
"name": "loopback-example-database",
"version": "2.0.0",
"main": "server/server.js",
"scripts": {
"lint": "jshint .",
"pretest": "npm run lint",
"start": "node .",
"test": "./node_modules/.bin/mocha --require test/globals.js"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^2.1.0",
"loopback-connector-postgresql": "^2.3.0",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^1.1.0"
},
"devDependencies": {
"chai": "^3.4.0",
"jshint": "^2.5.6",
"mocha": "^2.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-example-database"
},
"description": "loopback-example-database",
"license": "MIT"
}