forked from daihy8759/ieaseMusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.87 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
105
106
107
108
109
{
"name": "ieaseMusic",
"version": "1.0.0",
"main": "./dist/main.js",
"author": "daihy",
"license": "MIT",
"private": false,
"scripts": {
"start-renderer-dev": "webpack-dev-server --config webpack/webpack.renderer.dev.config.js",
"start-main-dev": "webpack --config webpack/webpack.main.config.js && electron ./dist/main.js",
"dev": "cross-env START_HOT=1 npm run start-renderer-dev",
"build-main": "webpack --config webpack/webpack.main.prod.config.js",
"build-renderer": "webpack --config webpack/webpack.renderer.prod.config.js",
"build-all": "npm run build-main && npm run build-renderer",
"build-analyzer": "cross-env analyzer=1 npm run build-renderer",
"build": "npm run build-all && electron-builder",
"lint": "eslint --ext .ts,.tsx src/**",
"lint:fix": "prettier --ext .ts,.tsx --write src/**"
},
"build": {
"productName": "ieaseMusic-desktop",
"appId": "com.github.daihy8759",
"mac": {
"category": "com.github.daihy8759"
},
"directories": {
"output": "release"
},
"files": [
"dist/"
],
"win": {
"target": "nsis"
}
},
"dependencies": {
"axios": "^0.19.0",
"classnames": "^2.2.6",
"date-fns": "^2.0.0",
"debug": "^4.1.1",
"delegate": "^3.2.0",
"electron-store": "^4.0.0",
"electron-window-state": "^5.0.3",
"libphonenumber-js": "^1.7.22",
"mobx": "^5.13.0",
"mobx-react-lite": "^1.4.1",
"qrcode": "^1.4.1",
"random-useragent": "^0.3.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.0",
"react-transition-group": "^4.2.2",
"react-use": "^10.5.0",
"remixicon": "^1.3.1",
"tiny-pinyin": "^1.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@hot-loader/react-dom": "^16.8.6",
"@types/classnames": "^2.2.9",
"@types/electron-devtools-installer": "^2.2.0",
"@types/lodash": "^4.14.136",
"@types/qrcode": "^1.3.4",
"@types/qs": "^6.5.3",
"@types/random-useragent": "^0.3.0",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/react-router-dom": "^4.3.4",
"@types/react-transition-group": "^4.2.2",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"electron": "^6.0.1",
"electron-builder": "^21.2.0",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^5.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"react-hot-loader": "^4.12.10",
"style-loader": "^1.0.0",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}