-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 KB
/
package.json
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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:next gen:css",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"biome": "biome check --write src",
"biome:ci": "biome ci src",
"lint:markup": "markuplint \"**/*.[jt]sx\"",
"type-check": "tsc --noEmit",
"test": "vitest --passWithNoTests --typecheck",
"gen:css": "hcm 'src/**/*.module.scss' --watch"
},
"dependencies": {
"@tanstack/react-query": "^5.53.1",
"clsx": "^2.1.1",
"jotai": "^2.9.3",
"neverthrow": "^7.1.0",
"next": "^14.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.3.0",
"sass": "^1.77.8",
"ts-pattern": "^5.3.1",
"typescript": "5.5.4",
"valibot": "^0.40.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@markuplint/jsx-parser": "^4.7.5",
"@markuplint/react-spec": "^4.5.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "22.5.1",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"happy-css-modules": "^3.1.1",
"jsdom": "^25.0.0",
"markuplint": "^4.9.2",
"npm-run-all2": "^6.2.2",
"postcss": "^8.4.41",
"vitest": "^2.0.5"
}
}