forked from ourongxing/newsnow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.32 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
114
115
{
"name": "newsnow",
"type": "module",
"version": "0.0.4",
"private": true,
"commit-id": "",
"packageManager": "[email protected]",
"author": {
"url": "https://github.com/ourongxing/",
"email": "[email protected]",
"name": "ourongxing"
},
"homepage": "https://github.com/ourongxing/newsnow",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"lint": "eslint",
"favicon": "tsx ./scripts/favicon.ts",
"start": "node --env-file .env.server dist/output/server/index.mjs",
"preview": "CF_PAGES=1 pnpm run build && wrangler pages dev",
"deploy": "CF_PAGES=1 pnpm run build && wrangler pages deploy",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.app.json",
"release": "bumpp",
"prepare": "simple-git-hooks",
"log": "wrangler pages deployment tail --project-name newsnow",
"test": "vitest -c vitest.config.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@iconify-json/si": "^1.2.1",
"@tanstack/react-query-devtools": "^5.59.9",
"@tanstack/react-router": "^1.64.0",
"@unocss/reset": "^0.63.4",
"better-sqlite3": "^11.3.0",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"consola": "^3.2.3",
"cookie-es": "^1.2.2",
"dayjs": "1.11.13",
"db0": "^0.2.1",
"defu": "^6.1.4",
"fast-xml-parser": "^4.5.0",
"framer-motion": "^11.11.8",
"h3": "^1.13.0",
"iconv-lite": "^0.6.3",
"jose": "^5.9.4",
"jotai": "^2.10.0",
"md5": "^2.3.0",
"ofetch": "^1.4.1",
"overlayscrollbars": "^2.10.0",
"overlayscrollbars-react": "^0.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.1",
"uncrypto": "^0.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.14.3",
"@iconify-json/ph": "^1.2.1",
"@ourongxing/eslint-config": "3.2.3-beta.6",
"@ourongxing/tsconfig": "^0.0.4",
"@rollup/pluginutils": "^5.1.3",
"@tanstack/react-query": "^5.59.9",
"@tanstack/router-devtools": "^1.64.0",
"@tanstack/router-plugin": "^1.64.0",
"@types/md5": "^2.3.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@unocss/rule-utils": "^0.63.4",
"@vitejs/plugin-react-swc": "^3.7.1",
"bumpp": "^9.7.1",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-77f43893-20241010",
"eslint-plugin-react-refresh": "^0.4.12",
"fast-glob": "^3.3.2",
"favicons-scraper": "^1.3.2",
"lint-staged": "^15.2.10",
"mlly": "^1.7.2",
"mockdate": "^3.0.5",
"pnpm-patch-i": "^0.4.1",
"rollup": "^4.24.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"unocss": "^0.63.4",
"unplugin-auto-import": "^0.18.3",
"vite": "^5.4.8",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-with-nitro": "0.0.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2",
"workbox-window": "^7.1.0",
"wrangler": "^3.80.3"
},
"pnpm": {
"patchedDependencies": {
"dayjs": "patches/dayjs.patch"
}
},
"resolutions": {
"dayjs": "1.11.13",
"picomatch": "^4.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}