-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "qb-rss-tool",
"version": "0.1.0",
"author": "Yu15693 <[email protected]>",
"homepage": "https://github.com/Yu15693/qb-rss-tool#readme",
"repository": "https://github.com/Yu15693/qb-rss-tool",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
"build": "modern build",
"start": "modern start",
"serve": "modern serve",
"new": "modern new",
"lint": "modern lint",
"prepare": "husky install",
"upgrade": "modern upgrade",
"tauri": "tauri",
"husky-fix": "chmod ug+x .husky/*",
"build-fix": "node ./build.js",
"test": "vitest"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@modern-js/runtime": "2.49.2",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@tauri-apps/api": "^1.5.4",
"ahooks": "^3.7.11",
"dayjs": "^1.11.11",
"lodash-es": "^4.17.21",
"minimatch": "^9.0.4",
"notistack": "^3.0.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-hook-form": "^7.51.3",
"rss-parser": "^3.13.0",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@mdx-js/loader": "^3.0.1",
"@modern-js-app/eslint-config": "2.49.2",
"@modern-js/app-tools": "2.49.2",
"@modern-js/eslint-config": "2.49.2",
"@modern-js/tsconfig": "2.49.2",
"@tauri-apps/cli": "^1.5.12",
"@types/jest": "~29.2.4",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.13",
"@types/node": "~16.11.7",
"@types/react": "~18.0.26",
"@types/react-dom": "~18.0.10",
"husky": "~8.0.1",
"lint-staged": "~13.1.0",
"prettier": "~2.8.1",
"rimraf": "~3.0.2",
"typescript": "~5.0.4",
"vitest": "^1.6.0"
}
}