forked from IBM-Blockchain-Archive/fabric-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.18 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"postinstall": "cd client/assets && npm install",
"build-css": "node-sass --include-path scss client/assets/css/scss/main.scss client/assets/css/main.css",
"watch-css": "node-sass --watch --include-path scss client/assets/css/scss/main.scss client/assets/css/main.css",
"build-materialize-css": "node-sass --include-path scss client/assets/css/materialize_scss/materialize.scss client/assets/css/materialize.css",
"watch-materialize-css": "node-sass --watch --include-path scss client/assets/css/materialize_scss/materialize.scss client/assets/css/materialize.css",
"nodemon": "nodemon ./bin/www",
"start": "npm run build-css | npm run watch-css | npm run nodemon"
},
"dependencies": {
"adm-zip": "^0.4.7",
"bluebird": "^3.3.5",
"body-parser": "~1.13.2",
"cfenv": "^1.0.3",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"fs-extra": "^0.30.0",
"hfc": "0.5.3",
"jsonwebtoken": "^5.7.0",
"morgan": "~1.6.1",
"watchjs": "0.0.0",
"winston": "^2.2.0",
"ws": "^1.1.0"
},
"devDependencies": {
"node-sass": "^3.4.2"
}
}