-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.49 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
{
"name": "electron",
"version": "0.1.2",
"private": true,
"homepage": "./",
"main": "public/electron.js",
"build": {
"appId": "com.forensics.electron",
"productName": "Forensics"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"@mui/x-date-pickers": "^7.22.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.7",
"chart.js": "^4.4.6",
"chartjs-plugin-datalabels": "^2.2.0",
"dayjs": "^1.11.13",
"electron-is-dev": "^2.0.0",
"electron-progressbar": "^2.0.1",
"electron-updater": "^4.6.5",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-cookie": "^7.2.2",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-kakao-maps-sdk": "^1.1.27",
"react-router-dom": "^6.28.0",
"react-scripts": "5.0.0",
"styled-components": "^6.1.13",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "concurrently \"cross-env BROWSER=none yarn start:react\" \"wait-on http://localhost:3000 && yarn start:electron\"",
"start:electron": "electron .",
"start:react": "react-scripts start",
"build:react": "react-scripts build",
"test:react": "react-scripts test",
"eject:react": "react-scripts eject",
"build": "yarn build:react && electron-builder",
"release": "yarn build:react && set GH_TOKEN={github_token} && electron-builder",
"dev": "webpack serve --env development"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@eslint/js": "^9.13.0",
"@svgr/webpack": "^8.1.0",
"babel-loader": "^9.2.1",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"electron": "^17.1.2",
"electron-builder": "^25.0.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"file-loader": "^6.2.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"wait-on": "^6.0.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}