forked from ibm-developer/icp-nodejs-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "nodejs-sample",
"version": "1.0.0",
"description": "A generated IBM Cloud application",
"private": true,
"engines": {
"node": "^6.9.0"
},
"scripts": {
"start": "node server/server.js",
"debug": "node --debug server/server.js",
"test": "nyc mocha",
"build": "npm run build:idt",
"idt:build": "node idt.js build",
"idt:test": "node idt.js test",
"idt:debug": "node idt.js debug",
"idt:run": "node idt.js run",
"idt:deploy": "node idt.js deploy",
"idt:install": "node idt.js install"
},
"dependencies": {
"appmetrics": "^3.0.1",
"appmetrics-dash": "^3.3.3",
"appmetrics-prometheus": "^0.0.2",
"appmetrics-zipkin": "^1.0.4",
"body-parser": "^1.17.2",
"ejs": "^2.5.6",
"express": "^4.15.3",
"ibm-cloud-env": "^0",
"log4js": "^1.1.1"
},
"devDependencies": {
"chai": "^4.0.0",
"grunt": "^1.0.1",
"grunt-purifycss": "^0.1.2",
"gulp": "^3.9.1",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.2.1",
"gulp-notify": "^3.0.0",
"mocha": "^3.4.2",
"nyc": "^10.3.2",
"proxyquire": "^1.8.0"
}
}