-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.14 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
{
"name": "mp3tag",
"version": "0.2.0",
"private": true,
"dependencies": {
"@electron/remote": "^2.0.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@sentry/browser": "^7.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@types/react": "^16.9.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/react-virtualized": "^9.21.21",
"@types/redux-logger": "^3.0.8",
"@types/uuid": "^8.3.4",
"axios": "^0.27.2",
"clsx": "^1.1.1",
"customize-cra": "^1.0.0",
"dotenv": "^16.3.1",
"electron-fetch": "^1.7.2",
"electron-store": "^8.0.2",
"eslint": "^8.18.0",
"ffmetadata": "^1.6.0",
"glob": "^8.0.3",
"i18next": "^21.8.10",
"node-id3": "^0.2.2",
"nth-check": "^2.0.1",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-i18next": "^11.17.2",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-virtualized": "^9.22.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-observable": "^2.0.0",
"redux-persist": "^6.0.0",
"rxjs": "^7.5.5",
"trash": "7.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"scripts": {
"react:start": "BROWSER=none react-app-rewired start",
"react:build": "react-app-rewired build",
"react:test": "react-app-rewired test",
"react:eject": "react-scripts eject",
"electron:build": "yarn tsc -p ./electron/tsconfig.json",
"electron:dev": "yarn tsc --watch -p ./electron/tsconfig.json",
"electron": "nodemon --exec \"\"electron .\"\"",
"start": "concurrently -k \"yarn electron:dev\" \"yarn react:start\" \"yarn electron\"",
"build": "yarn react:build && yarn electron:build && electron-builder --config \"electron-builder.json\" ",
"lint": "eslint -c .eslintrc.js '{src,electron}/**/*.{ts,tsx}'"
},
"resolutions": {
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"main": "build/electron.js",
"homepage": "./",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.28.0",
"babel-plugin-import": "^1.13.5",
"concurrently": "^7.2.2",
"electron": "^19.0.4",
"electron-builder": "^23.0.3",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"nodemon": "^2.0.6"
}
}