forked from cwbuecheler/node-tutorial-for-frontend-devs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 771 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "nodetest1",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm install -g bower && bower install && xvfb-run electron node_modules/scram-engine/main.js --entry-file app/server/index.html",
"dev": "electron --enable-logging node_modules/scram-engine/main.js --entry-file app/server/index.html",
"dev-window": "electron --enable-logging node_modules/scram-engine/main.js --entry-file app/server/index.html --window"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"debug": "^2.6.8",
"express-web-components": "^0.5.4",
"mongodb": "^2.2.28",
"monk": "^6.0.0",
"morgan": "^1.8.2",
"pug": "^2.0.0-rc.2",
"scram-engine": "^0.6.1",
"serve-favicon": "^2.4.3"
}
}