-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "electron-react-quick-start",
"version": "0.0.1",
"description": "A minimal Electron React application",
"main": "main.js",
"scripts": {
"dev": "webpack --watch",
"prod": "cross-env NODE_ENV=production webpack",
"start": "electron .",
"start-prod": "cross-env NODE_ENV=production electron ."
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"electron": "^1.8.8",
"svg-inline-loader": "^0.8.0",
"webpack": "^1.13.3",
"cross-env": "^5.2.0"
},
"dependencies": {
"css-loader": "^1.0.0",
"electron-reload": "^1.2.5",
"grommet": "^1.11.0",
"node-sass": "^4.9.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-inlinesvg": "^0.8.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"sass-loader": "^7.1.0",
"scribbletune": "0.10.1",
"style-loader": "^0.23.1",
"svg-loader": "0.0.2",
"tone": "^0.12.80"
}
}