-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"electron": "cross-env NODE_ENV=development electron ./",
"start": "cross-env NODE_ENV=development webpack --watch",
"package": "cross-env NODE_ENV=production node package.js",
"package-mac": "electron-packager . Document --out=release --platform=darwin --arch=x64 --asar",
"package-win": "electron-packager . Document --out=release --platform=win32 --arch=x64 --asar"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"cross-env": "^2.0.1",
"css-loader": "^0.24.0",
"del": "^2.2.2",
"electron": "1.3.4",
"electron-devtools-installer": "^2.0.1",
"electron-packager": "^7.7.0",
"electron-rebuild": "^1.2.0",
"file-loader": "^0.8.5",
"minimist": "^1.2.0",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.11"
},
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"normalize.css": "^3.0.3"
}
}