-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "tofpcap",
"version": "1.0.0",
"description": "",
"homepage": "./",
"bin": "main.js",
"main": "main.js",
"dependencies": {
"app-root-path": "^3.1.0",
"cap": "^0.2.1",
"nan": "^2.17.0",
"node-cron": "^3.0.2",
"node-notifier": "^10.0.1",
"readline-sync": "^1.4.10",
"win10-toast": "^0.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"react-start": "set BROWSER=none && yarn start",
"electron-start": "set ELECTRON_START_URL=http://localhost:3000 && electron .",
"electron-pack": "yarn build && electron-builder build -c.extraMetadata.main=build/Main.js"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.7",
"electron": "^6.1.12",
"electron-builder": "^22.10.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}