-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "egghead-loopback",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"test": "set NODE_ENV=test && mocha test/**/*.test.js",
"test:watch": "npm run test -- --watch",
"dev": "set MONGO_URL=mongodb://tunca:[email protected]:15493/product&&nodemon server/server.js --watch common --watch server"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"debug": "^2.6.8",
"helmet": "^1.3.0",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-connector-mongodb": "^3.2.1",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"nsp": "^2.1.0",
"supertest": "^3.0.0"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "egghead-loopback"
}