-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "voteapp",
"version": "1.0.28",
"description": "Voting App - freeCodeCamp Challenge",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run start-server-debug",
"start-server": ": $(node_modules/.bin/babel-node --presets 'react,es2015' src/server.js)",
"start-server-debug": "node_modules/.bin/babel-node --presets 'react,es2015' src/server.js",
"stop-server": ": $(killall node nodejs)",
"watch": "gulp watch",
"dev-start": "gulp build && npm run start-server && gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeckersBOX/votingapp.git"
},
"author": "Davide Francesco Merico",
"license": "ISC",
"bugs": {
"url": "https://github.com/NeckersBOX/votingapp/issues"
},
"homepage": "https://github.com/NeckersBOX/votingapp#readme",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"fs": "0.0.1-security",
"material-ui": "^0.16.5",
"md5": "^2.2.1",
"mongodb": "^2.2.16",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-google-charts": "^1.2.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"webpack-stream": "^3.2.0"
},
"devDependencies": {
"babel-loader": "^6.2.9",
"babel-preset-stage-0": "^6.16.0",
"child_process": "^1.0.2",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-minify": "0.0.14",
"gulp-sass": "^3.0.0",
"http-server": "^0.9.0",
"run-sequence": "^1.2.2",
"webpack": "^1.14.0"
}
}