-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "react-starter",
"description": "A minimal project starter for React apps with TypeScript and Vite",
"version": "1.0.0-alpha.0",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://github.com/flow145/react-starter#readme",
"bugs": "https://github.com/flow145/react-starter/issues",
"repository": "git@github.com:flow145/react-starter.git",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "biome format --reporter=summary",
"format:fix": "pnpm format --write",
"check": "biome check --reporter=summary",
"check:fix": "pnpm check --write",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"react": "~19.2.8",
"react-dom": "~19.2.8"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@commitlint/cli": "~21.2.1",
"@commitlint/config-conventional": "~21.2.0",
"@testing-library/dom": "~10.4.1",
"@testing-library/jest-dom": "~7.0.0",
"@testing-library/react": "~16.3.2",
"@testing-library/user-event": "~14.6.1",
"@types/node": "~24.12.4",
"@types/react": "~19.2.17",
"@types/react-dom": "~19.2.3",
"@vitejs/plugin-react": "~6.0.4",
"happy-dom": "~20.11.1",
"lefthook": "~2.1.10",
"typescript": "~7.0.2",
"vite": "~8.1.5",
"vite-plugin-mkcert": "~2.1.0",
"vitest": "~4.1.10"
}
}