-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
51 lines (51 loc) · 1.38 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
{
"entry": {
"index": "./src/entry/index.jsx"
},
"dependencies": {
"atool-build": "0.4.x",
"babel-polyfill": "^6.3.14",
"classnames": "^2.2.3",
"font-awesome": "^4.5.0",
"github-markdown-css": "^2.2.1",
"isomorphic-fetch": "^2.2.1",
"lodash.pick": "^4.1.0",
"marked": "^0.3.5",
"normalize.css": "^3.0.3",
"react": "0.14.x",
"react-dom": "0.14.x",
"react-redux": "4.4.x",
"react-router": "^2.0.0-rc5",
"react-router-redux": "^2.1.0",
"redux": "3.3.x",
"redux-actions": "0.9.x",
"redux-saga": "^0.8.2",
"reselect": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"dora": "0.2.x",
"dora-plugin-atool-build": "0.4.x",
"dora-plugin-hmr": "0.3.x",
"dora-plugin-livereload": "0.2.x",
"dora-plugin-proxy": "0.5.x",
"electron-packager": "^5.2.1",
"electron-prebuilt": "^0.36.8",
"eslint": "1.10.x",
"eslint-config-airbnb": "3.x",
"eslint-plugin-react": "3.x",
"gh-pages": "^0.10.0",
"pre-commit": "1.x"
},
"pre-commit": [
"lint"
],
"scripts": {
"start": "electron ./main.js",
"start-hot": "HOT=1 electron ./main.js",
"build": "atool-build",
"dev": "dora --plugins proxy,atool-build,hmr,livereload?enableJs=false",
"lint": "eslint --ext .js,.jsx src",
"deploy": "npm run build && cp index.html ./dist/ && node ./scripts/deploy.js"
}
}