-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.36 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
118
119
120
{
"name": "choose-your-own-solution",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.11.1",
"npm": "10.2.4"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/lato": "^5.0.20",
"@fontsource/roboto": "^4.5.7",
"@mui/material": "^5.8.7",
"@react-pdf/renderer": "^3.3.8",
"@react-spring/web": "^9.5.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@visx/axis": "^3.1.0",
"@visx/group": "^2.10.0",
"@visx/legend": "^2.10.0",
"@visx/shape": "^2.11.1",
"@visx/text": "^2.10.0",
"@visx/tooltip": "^2.10.0",
"@visx/visx": "^3.1.2",
"animate.css": "^4.1.1",
"axios": "^1.7.7",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"electron-log": "^4.4.8",
"env-cmd": "^10.1.0",
"mui-image": "^1.0.7",
"plotly.js": "^2.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-plotly.js": "^2.6.0",
"react-scripts": "5.0.1",
"swiper": "^11.0.7",
"typescript": "^4.7.4",
"wait-on": "^7.0.1",
"web-vitals": "^2.1.4"
},
"main": "public/main.js",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:development": "env-cmd -f .env.development react-scripts build",
"build:production": "env-cmd -f .env.production react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron:serve": "concurrently -k \"cross-env BROWSER=none npm run start\" \"npm run electron:start\"",
"electron:build:installer": "npm run build && electron-builder -c.extraMetadata.main=build/main.js",
"electron:start": "wait-on tcp:3000 && electron ."
},
"build": {
"extends": null,
"appId": "com.electron.choose-your-own-solution",
"productName": "Choose Your Own Solution",
"files": [
"dist/**/*",
"build/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"output": "../output/"
},
"win": {
"target": "nsis",
"icon": "public/desktop-logo512.ico"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/desktop-logo512.ico",
"installerHeaderIcon": "public/desktop-logo512.ico",
"artifactName": "${productName}-Setup-${version}.${ext}"
}
},
"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": {
"@mui/icons-material": "^5.8.4",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.43",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"electron": "^24.0.0",
"electron-builder": "^23.6.0",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"node-sass": "^7.0.1",
"react-test-renderer": "^18.2.0"
}
}