-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dsk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "yarn prisma:gen && yarn prisma:deploy && next start",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky install",
"prisma:gen": "prisma generate",
"prisma:deploy": "prisma migrate deploy"
},
"dependencies": {
"@headlessui/react": "^1.6.5",
"@prisma/client": "^3.15.1",
"@trpc/client": "^9.24.0",
"@trpc/next": "^9.24.0",
"@trpc/react": "^9.24.0",
"@trpc/server": "^9.24.0",
"axios": "^0.27.2",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"directory-tree": "^3.3.0",
"formidable": "^2.0.1",
"framer-motion": "^6.5.1",
"glob": "^8.0.3",
"istextorbinary": "^6.0.0",
"next": "^12.2.2",
"next-auth": "^4.4.0",
"prettier": "^2.7.0",
"prisma": "^3.15.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-dropzone": "^14.2.2",
"react-hot-toast": "^2.2.0",
"react-query": "^3.39.1",
"react-syntax-highlighter": "^15.5.0",
"spinners-react": "^1.0.7",
"zod": "^3.17.3",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/formidable": "^2.0.5",
"@types/node": "17.0.41",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@types/react-syntax-highlighter": "^15.5.2",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"typescript": "4.7.3"
}
}