-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
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
67
68
69
70
71
72
73
74
75
76
{
"name": "acc-configurer",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"author": {
"name": "Craig J. Bass",
"email": "[email protected]",
"url": "https://github.com/craigjbass/a3c"
},
"build": {
"appId": "uk.co.craigbass.a3c",
"productName": "a3c",
"copyright": "Copyright © 2020 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"@blueprintjs/core": "^3.28.1",
"@blueprintjs/datetime": "^3.18.1",
"@reach/router": "^1.3.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"electron-is-dev": "^1.2.0",
"file-saver": "^2.0.2",
"jszip": "^3.4.0",
"luxon": "^1.24.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typescript": "^3.9.3",
"uuid": "^8.1.0"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"electron-dev": "concurrently \"BROWSER=none npm run start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-dev-windows":"concurrently \"set BROWSER=none && npm run start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "npm run build",
"electron-pack-mac": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder -m",
"electron-pack": "electron-builder -w"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"electron 9.0.1",
"last 1 chrome version"
],
"development": [
"electron 9.0.1",
"last 1 chrome version"
]
},
"devDependencies": {
"@rescripts/rescript-env": "0.0.12",
"@rescripts/cli": "0.0.14",
"concurrently": "^5.2.0",
"electron-builder": "^22.7.0",
"electron": "^9.0.1",
"wait-on": "^5.0.0"
}
}