forked from faceyspacey/redux-first-router-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 3.61 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "Gnomocracy",
"description": "Web 3.0 App to facilitate decision making in GNOME",
"version": "1.0.0",
"main": "server/index.js",
"author": "Daniel Playfair Cal <[email protected]>, Anish Patil <[email protected]>",
"license": "MIT",
"scripts": {
"testrpc": "testrpc --network-id 10 -m \"arena narrow morning betray loud access message camera frown poem vote bonus\"",
"start": "npm run clean && cross-env NODE_ENV=development babel-watch server/index.js",
"start:prod": "npm run build && npm run serve",
"serve": "cross-env NODE_ENV=production node buildServer/index.js",
"build": "npm run build:client && npm run build:server && npm run build:node",
"build:client": "rimraf buildClient && cross-env NODE_ENV=production webpack --progress -p --config webpack/client.prod.js",
"build:server": "rimraf buildServer && cross-env NODE_ENV=production webpack --progress -p --config webpack/server.prod.js",
"build:node": "cross-env NODE_ENV=production babel server/index.js -o buildServer/index.js && babel server/api.js -o buildServer/api.js",
"clean": "rimraf buildClient buildServer",
"precommit": "lint-staged --verbose",
"cm": "git-cz",
"lint": "eslint --fix src server webpack",
"format": "prettier --single-quote --semi=false --write '{src,server,webpack}/**/*.js' && npm run lint"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"cookie-parser": "^1.4.3",
"ethereumjs-testrpc": "^4.1.3",
"express": "^4.15.2",
"fetch-everywhere": "^1.0.5",
"history": "^4.6.3",
"immutable": "^3.8.2",
"react": "^15.4.2",
"react-datetime": "^2.10.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.5",
"react-universal-component": "^2.5.0",
"redux": "^3.7.0",
"redux-devtools-extension": "^2.13.2",
"redux-first-router": "^1.9.15",
"redux-first-router-link": "^1.1.4",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"transition-group": "^0.0.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-flush-chunks": "^1.1.22"
},
"devDependencies": {
"autodll-webpack-plugin": "^0.0.7",
"babel-cli": "^6.24.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-universal-import": "^1.2.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-watch": "^2.0.6",
"commitizen": "^2.9.6",
"cross-env": "^5.0.1",
"css-loader": "^0.27.3",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-css-chunks-webpack-plugin": "^2.0.15",
"flow-bin": "^0.53.0",
"husky": "^0.13.2",
"jest": "^20.0.4",
"lint-staged": "^3.4.0",
"prettier": "^1.4.4",
"react-hot-loader": "next",
"rimraf": "^2.6.1",
"solc-loader": "^1.1.1",
"travis-github-status": "^1.4.0",
"web3": "^1.0.0-beta.22",
"web3-loader": "git://github.com/hedgepigdaniel/web3-loader.git#22ff06f0fea191cebe54e568d237d7552e8dcc33",
"webpack": "^3.5.4",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-hot-server-middleware": "^0.1.0",
"write-file-webpack-plugin": "^4.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --semi=false --write",
"eslint --fix",
"git add"
]
}
}