-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "loopback-example-app",
"version": "3.2.0",
"description": "LoopBack Example Application",
"main": "server/server.js",
"dependencies": {
"async": "~0.9.0",
"compression": "^1.0.3",
"cors": "^2.7.1",
"errorhandler": "^1.1.1",
"function-rate-limit": "~0.0.1",
"loopback": "^2.22.0",
"loopback-boot": "^2.12.1",
"loopback-connector-rest": "^1.1.4",
"loopback-datasource-juggler": "^2.0.0",
"loopback-component-explorer": "^2.1.0",
"request": "^2.37.0",
"serve-static": "^1.10.0",
"shuffle": "~0.2.1",
"text-table": "~0.2.0",
"weighted": "~0.2.2",
"strong-start": "~1.3.2"
},
"optionalDependencies": {
"loopback-connector-mysql": "^1.2.1",
"loopback-connector-mongodb": "^1.2.5",
"loopback-connector-oracle": "^1.2.1"
},
"devDependencies": {
"jshint": "^2.7.0",
"mocha": "^1.20.1",
"supertest": "^0.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-example-app.git"
},
"author": "Miroslav Bajtos <miroslav@strongloop.com>",
"license": "MIT",
"scripts": {
"test": "mocha -R spec server/test",
"pretest": "jshint .",
"postinstall": "cd strong-resources && npm install",
"start": "node ."
}
}