-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.67 KB
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
{
"name": "free-wind",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-base": "cross-env NODE_BASE_ENV=base vite",
"dev-pro": "cross-env NODE_BASE_ENV=pro vite",
"build": "tsc -b && vite build",
"build:client": "yarn check-content && tsc -b && vite build",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist-server",
"prerender": "tsx scripts/prerender.ts",
"validate-static": "tsx scripts/validate-static.ts",
"build:static": "yarn build:client && yarn build:server && yarn prerender && yarn validate-static",
"generate": "tsx freeWind/src/vite/generate.ts",
"check-content": "cross-env CONTENT_STRICT=1 tsx freeWind/src/vite/generate.ts",
"test": "vitest run --reporter=dot",
"test:ui": "vitest",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"check-format": "git diff --exit-code",
"prepare": "husky"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@reduxjs/toolkit": "^2.2.2",
"antd": "^6.2.0",
"axios": "^1.13.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.19",
"minisearch": "^7.2.0",
"qs": "^6.14.0",
"react": "^19",
"react-dom": "^19",
"react-intersection-observer": "^10.0.2",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@mdx-js/rollup": "^3.1.0",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/mdx": "^2.0.13",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-react-swc": "^3.8.0",
"animate.css": "^4.1.1",
"autoprefixer": "^10",
"chokidar": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3",
"rehype-highlight": "^7.0.1",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.94.2",
"tailwindcss": "^3",
"terser": "^5.39.0",
"tsx": "^4.21.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"unist-util-visit": "^5.0.0",
"vite": "^7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^1",
"vitest": "^4"
},
"packageManager": "yarn@1.22.22"
}