forked from strongloop/loopback-example-user-management
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 752 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
{
"name": "loopback-example-user-management",
"version": "1.0.0",
"description": "LoopBack user management example",
"main": "server/server.js",
"scripts": {
"pretest": "jshint .",
"start": "node .",
"test": "tape tests/**/*.js"
},
"dependencies": {
"body-parser": "^1.10.0",
"compression": "^1.0.3",
"cors": "^2.8.1",
"strong-error-handler": "^1.1.0",
"loopback": "^3.0.0",
"loopback-boot": "^2.4.0",
"loopback-component-explorer": "^2.1.0",
"serve-favicon": "^2.0.1"
},
"devDependencies": {
"jshint": "^2.5.6",
"tape": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback-example-user-management.git"
},
"license": "MIT"
}