-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "speedrunslive-races",
"version": "0.2.0",
"private": true,
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"concurrently": "^3.5.1",
"electron": "^1.7.10",
"electron-builder": "^19.52.1",
"typescript": "^2.6.2",
"wait-on": "^2.0.2"
},
"dependencies": {
"electron-is-dev": "^0.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts-ts": "2.8.0"
},
"homepage": "./",
"main": "public/electron-starter.js",
"build": {
"appId": "com.flagrama.speedrunslive-races",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"electron-dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "build --em.main=build/electron-starter.js --ia32 --x64",
"preelectron-pack": "yarn build"
}
}