-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.65 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
110
111
112
113
{
"name": "netease-web",
"version": "1.0.4",
"private": false,
"build": {
"extends": null,
"productName": "netease-fake",
"appId": "7",
"directories": {
"output": "exe"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "./public/logo.ico"
},
"nsis": {
"shortcutName": "netease-fake",
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"files": [
"build/**/*",
"main.ts"
]
},
"scripts": {
"start": "react-scripts start",
"dev": "react-scripts start",
"build": "yarn lint && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "husky install && git switch dev",
"lint": "eslint src --max-warnings 0",
"commit": "cz",
"cz": "cz",
"electron:dev": "electron . dev",
"electron": "electron .",
"electron:build": "electron-builder"
},
"main": "main.ts",
"homepage": ".",
"dependencies": {
"@loadable/component": "^5.15.0",
"axios": "^0.24.0",
"image-color-extraction": "^1.1.2",
"mobx": "^6.3.8",
"mobx-react-lite": "^3.2.2",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"react-use": "^17.3.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/axios": "^0.14.0",
"@types/loadable__component": "^5.13.4",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"typescript": "^4.3.2"
},
"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"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*.ts*": [
"yarn lint"
]
},
"homepage": "./"
}