-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "music-player",
"description": "My ultimate music player",
"author": "Qiao Anran <qiaoanran@gmail.com>",
"version": "0.1.0",
"private": true,
"main": "main.js",
"dependencies": {
"abab": "^1.0.4",
"jsmediatags": "^3.8.1",
"md5-file": "^3.2.3",
"nedb": "^1.8.0",
"soundmanager2": "^2.97.20170602"
},
"scripts": {
"electron": "electron .",
"start": "webpack-cli --watch --config buildconfig/dev.config.js",
"pack": "webpack-cli --config buildconfig/prod.config.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dist": "npm run pack && electron-builder"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"electron": "10.1.2",
"electron-builder": "^20.10.0",
"node-sass": "^4.8.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"url-loader": "^1.0.1",
"webpack": "^4.44.2",
"webpack-cli": "^2.0.13"
},
"build": {
"appId": "com.electron.music-player"
}
}