-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 KB
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
{
"name": "my-app",
"version": "0.2.0",
"author": "Your Name",
"description": "React-TypeScript-Electron sample with Create React App and Electron Builder",
"homepage": ".",
"main": "build/electron/main.js",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/electron-devtools-installer": "^2.2.2",
"@types/jest": "^28.1.1",
"@types/mime": "^3.0.1",
"@types/node": "^18.7.14",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"bootstrap": "^5.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-reload": "^1.5.0",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"music-metadata": "^7.12.6",
"react": "^18.1.0",
"react-bootstrap": "^2.5.0",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "^18.1.0",
"react-hotkeys": "^2.0.0",
"react-icons": "^4.4.0",
"react-router-dom": "6",
"react-scripts": "^5.0.1",
"typescript": "^4.8.2",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4",
"zustand": "^4.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"postinstall": "electron-builder install-app-deps",
"electron:dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on tcp:127.0.0.1:3000 && tsc -p electron && electron .\"",
"electron:build": "yarn build && tsc -p electron && electron-builder",
"eject": "react-scripts eject"
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"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": {
"@types/lodash": "^4.14.184",
"@types/uuid": "^8.3.4",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"electron": "^20.1.1",
"electron-builder": "^23.0.3",
"prettier": "^2.7.1",
"wait-on": "^6.0.1"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 100
}
}