-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
37 lines (37 loc) · 927 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": "ai-study-assistant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "pretty-quick",
"format:staged": "pretty-quick --staged"
},
"dependencies": {
"@nextui-org/react": "^2.4.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"@unbody-io/ts-client": "^0.0.15",
"framer-motion": "^11.2.10",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"clsx": "^2.1.1",
"husky": "^9.0.11",
"postcss": "^8",
"prettier": "^3.3.0",
"prettier-plugin-organize-imports": "^3.2.4",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}