-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.3 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
{
"name": "ws-voting-app",
"version": "1.0.0",
"description": "voting app that utilises mongodb and websockets for live updates",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"nstart": "nodemon server/server.js -w ./server",
"pug": "pug -P ./app/index.pug -o ./dist/",
"watch-pug": "pug -w ./app/index.pug -o ./dist/",
"css": "stylus ./app/*.styl -o ./dist/",
"watch-css": "stylus -w ./app/*.styl -o ./dist/",
"browserify": "browserify ./app/index.js -o ./dist/bundle.js",
"watch-browserify": "watchify ./app/index.js -o ./dist/bundle.js",
"build": "npm-run-all --parallel pug css browserify",
"start-dev": "npm-run-all --parallel watch-pug watch-css watch-browserify nstart"
},
"author": "Jonathan T L Lee",
"repository": "https://github.com/Lee182/voting-app.git",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"login-with-twitter": "^1.0.0",
"mongodb": "^2.2.12",
"socket.io": "^1.7.1",
"uws": "^0.12.0",
"vue-charts": "^0.2.1",
"ws": "^1.1.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"npm-run-all": "^4.0.0",
"pug": "^2.0.0-beta6",
"stylus": "^0.54.5",
"watchify": "^3.7.0"
}
}