-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "next-ts-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx @biomejs/biome lint .",
"lint:write": "npx @biomejs/biome lint --write .",
"lint:error": "npx @biomejs/biome lint --error-on-warnings .",
"format": "npx @biomejs/biome format .",
"format:write": "npx @biomejs/biome format --write .",
"biome": "npx @biomejs/biome check --write .",
"prepare": "husky",
"typecheck": "npx tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.90.21",
"axios": "^1.13.5",
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"universal-cookie": "^8.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"cssnano": "^7.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.1",
"typescript": "^5.9.3"
}
}