-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "https://pierrelgv.github.io/InteractiveNovel",
"dependencies": {
"@reach/router": "^1.1.1",
"materialize-css": "^1.0.0-rc.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-materialize": "^2.3.3",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"wait-on": "^2.1.0"
},
"devDependencies": {
"gh-pages": "^1.2.0",
"concurrently": "^3.6.1",
"electron": "^2.0.5",
"electron-builder": "^20.25.0",
"electron-is-dev": "^0.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"deploy": "REACT_APP_BASEPATH='/InteractiveNovel' npm run build && gh-pages -d build",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js",
"preelectron-pack": "npm run build"
},
"build": {
"appId": "com.example.electron-cra",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"author": "Pere Foireux"
}