-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "sparetime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^3.8.1",
"framer-motion": "^12.4.5",
"next": "15.0.3",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.14.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"husky": "^8.0.0",
"lint-staged": "^15.4.3",
"typescript": "^5"
},
"packageManager": "[email protected]+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"lint-staged": {
"**/*.{ts,tsx}": [
"pnpm tsc --noEmit"
]
}
}