forked from electron/minimal-repro
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 Bytes
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
{
"name": "electron-react-quick-start",
"version": "0.0.1",
"description": "A minimal Electron React application",
"main": "main.js",
"scripts": {
"dev":"webpack --watch",
"start": "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-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"electron": "^1.4.1",
"webpack": "^1.13.3"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}