-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"private": true,
"name": "electron-example",
"version": "0.1.0",
"description": "An example showing how to use Intern to test an Electron app",
"homepage": "./",
"dependencies": {
"babel-core": "~6.23.0",
"babel-plugin-transform-class-properties": "~6.23.0",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-react-jsx": "~6.23.0",
"babel-preset-env": "~1.3.3",
"classnames": "~2.2.5",
"electron": "~1.6.11",
"react": "~15.5.0",
"react-dom": "~15.5.0",
"react-redux": "~5.0.0",
"redux": "~3.6.0",
"todomvc-app-css": "~2.0.6"
},
"devDependencies": {
"enzyme": "~2.8.0",
"intern": "~4.3.0",
"react-addons-test-utils": "~15.5.0",
"react-scripts": "~0.9.3",
"react-test-renderer": "~15.5.0",
"serve": "~5.1.1",
"shx": "~0.3.2",
"spectron": "~3.7.2"
},
"scripts": {
"build": "react-scripts build && shx cp src/main.js build && shx cp src/bootstrap.js build",
"start": "cd build && electron bootstrap.js",
"clean": "shx rm -rf build",
"test": "intern"
}
}