-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "react-electron-webpack2-starter",
"version": "1.0.0",
"private": true,
"description": "A starter kit for sharing code between electron and react, with love of webpack 2.0",
"main": "index.js",
"paths": {
"electron": "./dist/electron",
"web": "./dist/web",
"static": "./static"
},
"scripts": {
"build-dev": "grunt build-dev",
"build-prod": "grunt build-prod",
"serve-web": "grunt serve-web",
"serve-electron": "grunt serve-electron",
"lint": "eslint ./client ./webpack.config.js -f table || true"
},
"license": "MIT",
"devDependencies": {
"babel-core": ">=6.24.1",
"babel-eslint": ">=7.2.2",
"babel-loader": ">=6.4.1",
"babel-plugin-transform-class-properties": ">=6.24.1",
"babel-plugin-transform-runtime": ">=6.23.0",
"babel-preset-es2015": ">=6.24.1",
"babel-preset-react": ">=6.24.1",
"babel-preset-react-hmre": ">=1.1.1",
"cross-env": ">=4.0.0",
"css-loader": ">=0.28.0",
"eslint": ">=3.19.0",
"eslint-config-airbnb": ">=14.1.0",
"eslint-plugin-import": ">=2.2.0",
"eslint-plugin-jsx-a11y": ">=4.0.0",
"eslint-plugin-react": ">=6.10.3",
"file-loader": "^0.11.1",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-exec": "^2.0.0",
"grunt-open": "^0.2.3",
"grunt-webpack": "^3.0.0-beta.2",
"replace": "^0.3.0",
"serve-static": "^1.12.1",
"style-loader": ">=0.16.1",
"webpack": ">=2.4.1",
"webpack-dev-server": ">=2.4.2"
},
"dependencies": {
"babel-runtime": ">=6.23.0",
"electron": ">=1.6.5",
"grunt": "^1.0.1",
"react": ">=15.5.4",
"react-data-grid": "^2.0.31",
"react-dom": ">=15.5.4",
"react-redux": ">=5.0.4",
"redux": ">=3.6.0",
"redux-thunk": ">=2.2.0"
}
}