forked from codeforgso/GoVote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "govote",
"version": "0.0.1",
"private": true,
"proxy": "http://localhost:3001",
"dependencies": {
"axios": "^0.16.2",
"coa-command-line-args": "^1.0.1",
"dotenv": "^4.0.0",
"es6-promise": "^4.0.5",
"express": "4.13.3",
"express-promise-router": "^2.0.0",
"fs": "0.0.2",
"leaflet": "^1.1.0",
"path": "^0.12.7",
"pg": "^7.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.4.2",
"react-leaflet": "^1.4.1",
"react-render-html": "^0.1.6",
"react-router": "^3.0.2",
"react-router-bootstrap": "^0.23.1",
"react-router-dom": "^4.1.2"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"client": "webpack-dev-server --env=dev --progress --profile --colors",
"server": "babel-node server/index.js",
"build:dist": "webpack -p --env=prod --progress --profile --colors"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "6.5.0",
"concurrently": "^3.1.0",
"css-loader": "^0.28.4",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.9.0",
"redux-immutable-state-invariant": "^2.0.0",
"style-loader": "^0.18.2",
"webpack": "^2.2.1",
"webpack-dev-server": "2.4.5"
}
}