forked from Money-Juicer/VTunes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.15 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.15 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
{
"name": "vtunes",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.vtunes.app",
"productName": "VTunes",
"asar": false,
"win": {
"icon": "./public/logo.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"include": "./installer.nsh"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"electron-is-dev": "^2.0.0",
"music-metadata": "^7.14.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.9.0",
"react-helmet": "^6.1.0",
"react-helmet-async": "^2.0.1",
"react-redux": "^8.1.3",
"react-scripts": "5.0.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "npm run build && concurrently \"npm run electron\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test --coverage --silent",
"eject": "react-scripts eject",
"electron": "electron . && wait-on http://localhost:3000",
"electron-build": "npm run build --em.main=build/main.js && electron-builder build",
"compile-sass": "node-sass src/styles -o src/styles"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.23.3",
"@reduxjs/toolkit": "^1.9.7",
"concurrently": "^8.2.2",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"wait-on": "^7.0.1"
}
}