-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "v2.sakanana.me",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"typegen": "chakra typegen src/theme/theme.ts",
"dev-tunnel": "cloudflared tunnel --url localhost:3000",
"lint": "next lint",
"postinstall": "npm run typegen"
},
"dependencies": {
"@chakra-ui/react": "^3.2.3",
"@emotion/react": "^11.14.0",
"@tabler/icons-react": "^3.25.0",
"@vercel/speed-insights": "^1.1.0",
"motion": "^11.15.0",
"next": "15.1.0",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@chakra-ui/cli": "^3.2.3",
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "^5"
}
}