-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.01 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
{
"name": "my-music",
"version": "0.1.0",
"private": true,
"main": "./public/electron.js",
"description": "一个数据源自网易云的桌面音乐客户端。",
"author": {
"name": "Y-qwq",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Y-qwq/Y-Music"
},
"homepage": ".",
"dependencies": {
"antd": "^3.16.6",
"axios": "^0.18.0",
"d3-ease": "^1.0.5",
"nedb": "^1.8.0",
"react": "^16.8.4",
"react-contexify": "^4.0.2",
"react-dom": "^16.8.4",
"react-move": "^5.2.1",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typescript": "^3.4.5"
},
"devDependencies": {
"babel-plugin-import": "^1.11.0",
"cross-env": "^5.2.0",
"customize-cra": "^0.2.12",
"electron": "^5.0.1",
"electron-builder": "^20.39.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"node-sass": "^4.12.0",
"react-app-rewired": "^2.1.1",
"redux-logger": "^3.0.6"
},
"scripts": {
"start": "set PORT=5000 && react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"ele-start": "cross-env NODE_ENV=development electron .",
"dist": "electron-builder --win --x64"
},
"build": {
"productName": "Y-Music",
"appId": "org.Y-Music.app",
"mac": {
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "./public/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Y-Music"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}