-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.11 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"productName": "SSP Price Checker",
"description": "Utility app to calculate upgrade and price of holoo products by software codes, add or remove modules and maintenances. Developed by Omid Azad in SSP Co",
"homepage": "./",
"author": "Omid Azad",
"main": "src/start.js",
"name": "frontend",
"version": "2.3.3",
"private": false,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@majidh1/jalalidatepicker": "^0.9.4",
"@mui/icons-material": "^5.15.16",
"@mui/material": "^5.15.16",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"electron-log": "^5.1.5",
"electron-updater": "^6.1.8",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"foreman": "^3.0.1",
"formik": "^2.4.6",
"jalaali-react-date-picker": "^1.0.17",
"moment": "^2.30.1",
"moment-jalaali": "^0.10.0",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"styled-components": "^6.1.9",
"stylis": "^4.3.2",
"stylis-plugin-rtl": "^2.1.1",
"web-vitals": "^2.1.4",
"yup": "^1.4.0"
},
"scripts": {
"start": "nf start -p 3000",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-start": "node src/start-react",
"react-start": "set BROWSER=none && react-scripts start",
"pack": "build --dir",
"dist": "npm run build && build",
"postinstall": "install-app-deps",
"build-installer": "electron-builder"
},
"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": {
"electron": "22.0.0",
"electron-builder": "^24.13.3",
"electron-is-dev": "^3.0.1"
},
"files": [
"build",
"*.js",
"node_modules",
"package.json",
"index.html",
"package-lock.json"
],
"build": {
"appId": "SSP Price Checker",
"productName": "SSP Price Checker",
"extends": null,
"publish": [
{
"provider": "github",
"owner": "devomid",
"repo": "SSP-Price-Checker"
}
],
"win": {
"target": [
"nsis"
],
"icon": "./src/assets/icon/icon.ico"
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"nsis": {
"uninstallDisplayName": "SSP Price Checker",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"oneClick": false,
"installerIcon": "./src/assets/icon/icon.ico",
"uninstallerIcon": "./src/assets/icon/icon.ico",
"allowToChangeInstallationDirectory": true
}
}
}