-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 900 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 900 Bytes
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
{
"name": "primitive-starter-kit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "biome lint --fix && biome check --write",
"format:unsafe": "biome check --unsafe --write",
"lint": "biome lint --fix"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-aria-components": "^1.14.0",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss-react-aria-components": "^2.0.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
}
}