-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.85 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
77
78
79
80
81
{
"name": "tsg-inventory-system",
"author": "Praneeth-rdy <tech.tsgiitkgp@gmail.com>",
"version": "0.2.0",
"private": true,
"dependencies": {
"@electron/remote": "^2.0.1",
"electron-is-dev": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3"
},
"main": "build/main.js",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"electron:serve": "concurrently -k \"cross-env BROWSER=none yarn start\" \"yarn electron:start\"",
"electron:build": "yarn build && electron-builder -c.extraMetadata.main=build/main.js",
"electron:start": "wait-on tcp:3000 && electron .",
"dist": "electron-builder"
},
"build": {
"extends": null,
"productName": "Inventory System",
"appId": "com.tsg.inventory-system",
"files": [
"dist/**/*",
"build/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "src/assets"
},
"win": {
"target": [
"nsis",
"msi"
],
"icon": "public/favicon.ico"
},
"nsis": {},
"linux": {
"target": [
"deb"
],
"icon": "public/icon.png"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"wait-on": "^6.0.0"
}
}