forked from bwestmoreland/sls-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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": "loopback-example-app",
"version": "3.0.0",
"description": "LoopBack Example Application",
"main": "server/server.js",
"dependencies": {
"compression": "^1.0.3",
"errorhandler": "^1.1.1",
"loopback": "^2.0.0",
"loopback-boot": "^2.0.0",
"loopback-datasource-juggler": "^2.0.0",
"serve-favicon": "^2.0.1",
"function-rate-limit": "~0.0.1",
"request": "^2.37.0",
"shuffle": "~0.2.1",
"text-table": "~0.2.0",
"weighted": "~0.2.2",
"async": "~0.9.0",
"loopback-connector-rest": "^1.1.4"
},
"optionalDependencies": {
"loopback-explorer": "^1.1.0",
"loopback-connector-mysql": "^1.2.1",
"loopback-connector-mongodb": "^1.2.5",
"loopback-connector-oracle": "^1.2.1"
},
"devDependencies": {
"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": {
"name": "MIT",
"url": "https://github.com/strongloop/loopback-example-app/blob/master/LICENSE"
},
"scripts": {
"test": "mocha -R spec server/test",
"pretest": "jshint ."
}
}