-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
99 lines (99 loc) · 2.88 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
{
"name": "lanzouyun-pan",
"version": "3.5.3",
"private": true,
"main": "build/main/index.js",
"description": "蓝奏云网盘客户端",
"author": {
"name": "chenhb23",
"url": "https://github.com/chenhb23"
},
"homepage": "./",
"scripts": {
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && yarn electron-start\"",
"build": "yarn react-build && yarn electron-build",
"react-start": "cross-env BROWSER=none craco start",
"react-build": "craco build",
"electron-start": "yarn tsc-electron-build && cd app && yarn start",
"electron-debug": "yarn tsc-electron-build && cd app && yarn debug",
"electron-build": "yarn tsc-electron-build && cd app && yarn build",
"release": "yarn react-build && electron-builder --publish=always",
"test": "craco test",
"eject": "react-scripts eject",
"tsc-electron-build": "tsc -p tsconfig.electron.json",
"postinstall": "electron-builder install-app-deps && cd app && yarn"
},
"dependencies": {
"antd": "^4.20.2",
"cheerio": "^1.0.0-rc.12",
"darkreader": "^4.9.46",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.0.1",
"form-data-encoder": "^1.7.2",
"formdata-node": "^4.3.2",
"fs-extra": "^10.1.0",
"got": "^12.0.4",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mobx": "^6.5.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^7.4.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"semver": "^7.3.7",
"tough-cookie": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/node": "^17.0.31",
"@types/prettier": "2.6.0",
"@types/semver": "^7.3.7",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"concurrently": "^7.1.0",
"craco-less": "^2.0.0",
"cross-env": "^7.0.3",
"electron": "^18.2.0",
"electron-builder": "^23.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.5.0",
"hpagent": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^12.4.1",
"react-scripts": "5.0.1",
"tailwindcss": "^3.3.2",
"typescript": "^4.6.4",
"wait-on": "^6.0.1",
"web-vitals": "^2.1.4"
}
}