-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 3.38 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
{
"name": "iease-music",
"version": "1.0.0",
"main": "./dist/main/build.js",
"author": "daihy",
"license": "MIT",
"private": false,
"scripts": {
"dev": "concurrently -n=vue,main -c=green,blue \"npm run dev:vite\" \"npm run dev:main\"",
"dev:main": "cross-env DEBUG=dev:* node script/build --env=development --watch",
"build:main": "cross-env NODE_ENV=production node script/build.js",
"dev:vite": "cross-env NODE_ENV=development vite",
"build:vite": "cross-env NODE_ENV=production vite build",
"build": "npm run build:main && npm run build:vite && electron-builder"
},
"build": {
"productName": "ieaseMusic",
"appId": "com.github.daihy8759",
"mac": {
"category": "com.github.daihy8759"
},
"directories": {
"output": "release",
"buildResources": "resources"
},
"files": [
"dist/",
"!node_modules"
],
"win": {
"target": "nsis"
}
},
"dependencies": {
"@daihy8759/netease-cloud-music-api": "1.0.3-beta.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"classnames": "^2.2.6",
"date-fns": "^2.25.0",
"debug": "^4.3.1",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.0.1",
"electron-window-state": "^5.0.3",
"libphonenumber-js": "^1.9.6",
"lodash-es": "^4.17.20",
"md5": "^2.3.0",
"qrcode": "^1.4.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-use": "^15.3.4",
"recoil": "^0.6.1",
"tailwindcss-text-indent": "^1.0.2",
"tiny-pinyin": "^1.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.2",
"@types/classnames": "^2.3.1",
"@types/dotenv-flow": "^3.2.0",
"@types/electron-devtools-installer": "^2.2.1",
"@types/lodash-es": "^4.17.5",
"@types/md5": "^2.3.1",
"@types/qrcode": "^1.4.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/recoilize": "^0.8.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.1",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"dotenv-flow": "^3.2.0",
"electron": "^18.2.0",
"electron-builder": "^23.0.3",
"electron-connect": "^0.6.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"less": "^4.1.2",
"ora": "^5.4.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"recoilize": "^3.1.6",
"rimraf": "^3.0.2",
"rollup-plugin-esbuild": "^4.8.2",
"tailwindcss": "^3.0.8",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"wait-on": "^6.0.0"
}
}