-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 999 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 999 Bytes
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
{
"name": "rsbuild-solid-test",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rsbuild build",
"build:ssg": "rsbuild build -c rsbuild.config.ssg.ts && node scripts/generate-static.js",
"check": "biome check --write",
"dev": "rsbuild dev --open",
"format": "biome format --write",
"preview": "rsbuild preview",
"preview:ssg": "npx serve dist-ssg"
},
"dependencies": {
"@solidjs/router": "^0.15.3",
"@tailwindcss/forms": "^0.5.10",
"@tanstack/solid-query": "^5.87.4",
"@types/d3": "^7.4.3",
"d3": "^7.9.0",
"lucide-solid": "^0.544.0",
"solid-js": "^1.9.9",
"tw-animate-css": "^1.3.8"
},
"devDependencies": {
"@biomejs/biome": "2.2.3",
"@rsbuild/core": "^1.5.6",
"@rsbuild/plugin-babel": "^1.0.6",
"@rsbuild/plugin-solid": "^1.0.6",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"serve": "^14.2.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2"
}
}