-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 910 Bytes
/
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
{
"name": "votingapp",
"version": "1.0.0",
"description": "vote",
"main": "app.js",
"dependencies": {
"body-parser": "^1.12.4",
"connect": "^3.3.5",
"express": "^4.8.7",
"express-ipfilter": "0.0.19",
"request": "^2.40.0",
"serve-favicon": "^2.1.5",
"socket.io": "^1.3.5",
"underscore": "^1.7.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-concat": "^2.4.0",
"gulp-jshint": "^1.8.4",
"gulp-less": "^1.3.5",
"gulp-plumber": "^0.6.5",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.4",
"nodemon": "^1.4.0",
"parallelshell": "^2.0.0"
},
"scripts": {
"start": "node app.js",
"build": "gulp react && gulp less",
"watch": "parallelshell './node_modules/.bin/gulp' './node_modules/.bin/nodemon app.js'"
},
"author": "Øyvind Holmstad",
"license": "ISC"
}