-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 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
{
"name": "ai-template",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rsbuild build",
"dev": "rsbuild dev --open",
"dev:test": "rsbuild dev --port 3100",
"dev:rsdoctor": "cross-env RSDOCTOR=true rsbuild dev",
"build:rsdoctor": "cross-env RSDOCTOR=true rsbuild build",
"dev:profile": "cross-env RSPACK_PROFILE=OVERVIEW rsbuild dev",
"build:profile": "cross-env RSPACK_PROFILE=OVERVIEW rsbuild build",
"check": "biome check --write",
"format": "biome format --write",
"preview": "rsbuild preview",
"test": "bun test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"pw:install": "playwright install",
"postinstall": "lefthook install"
},
"dependencies": {
"@iconify/tailwind4": "^1.0.6",
"cross-env": "^10.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@playwright/test": "^1.55.1",
"@rsbuild/core": "^1.5.13",
"@rsbuild/plugin-react": "^1.4.1",
"@rsdoctor/rspack-plugin": "^1.3.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/bun": "^1.2.23",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"lefthook": "^1.13.6",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2"
}
}