-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "world-of-workflow",
"description": "An agenda in the style of World of Warcraft",
"version": "1.0.0",
"author": "Laura Aubin",
"repository": "https://github.com/LauraAubin/World-Of-Workflow",
"main": "public/electron.js",
"homepage": "./",
"engines": {
"node": "12.4.0"
},
"dependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.10",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.11",
"autobind-decorator": "^2.4.0",
"classnames": "^2.2.6",
"moment": "^2.24.0",
"node-sass": "^4.10.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"typescript": "^3.5.0",
"electron-is-dev": "0.3.0"
},
"devDependencies": {
"electron": "^5.0.2",
"concurrently": "^3.5.0",
"wait-on": "^3.2.0",
"electron-builder": "^21.2.0"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"start-electron": "electron .",
"build": "yarn react-build && yarn electron-builder",
"start": "concurrently \"BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && yarn start-electron\""
},
"license": "ISC",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"World of Warcraft",
"Electron",
"React",
"NodeJS",
"FileSystem"
],
"proxy": "http://localhost:5000/"
}