-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 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
{
"name": "template-vite-react",
"description": "A template for react projects built with vite",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"author": "Mike Valeriano <mkvlrn@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:mkvlrn/template-vite-react"
},
"keywords": [
"vite",
"react",
"esm",
"template"
],
"engines": {
"node": "24",
"pnpm": "10"
},
"imports": {
"#/*": "./src/*.tsx"
},
"scripts": {
"dev": "node --watch ./src/main.ts",
"start": "node ./src/main.ts",
"build": "NODE_ENV=production vite build",
"lint": "pnpm lint-check --write",
"lint-check": "biome check --diagnostic-level=warn --no-errors-on-unmatched",
"typecheck": "tsc",
"typecheck-staged": "tsc-files",
"test": "vitest",
"test-staged": "vitest related --bail=1 --reporter=github-actions",
"test-ci": "vitest --bail=1 --reporter=github-actions",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@mkvlrn/config": "^4.0.0",
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/router-plugin": "^1.167.22",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"jsdom": "^29.0.2",
"lefthook": "^2.1.6",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.2",
"tsc-files": "^1.1.4",
"typescript": "^6.0.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"dependencies": {
"@tanstack/react-query": "^5.99.1",
"@tanstack/react-router": "^1.168.23",
"react": "^19.2.5",
"react-dom": "^19.2.5"
}
}