-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "robohub-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"build": "prisma generate && prisma db push && next build",
"build:production": "prisma generate && next build",
"start": "next start",
"start:production": "prisma db push && next start",
"lint": "next lint",
"postinstall": "prisma generate",
"test": "jest"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^4.7.0",
"@trpc/client": "^10.25.0",
"@trpc/next": "^10.25.0",
"@trpc/server": "^10.25.0",
"argon2": "^0.30.3",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"formik": "^2.2.9",
"framer-motion": "^10.12.7",
"minio": "^7.1.1",
"next": "^13.5.2",
"next-auth": "^4.22.1",
"postcss": "8.4.23",
"prisma": "^4.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-loading-icons": "^1.1.0",
"server-only": "^0.0.1",
"superjson": "^1.12.3",
"tabler-icons-react": "^1.56.0",
"tailwindcss": "3.3.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"yup": "^1.1.1"
},
"devDependencies": {
"@synaptic-simulations/eslint-config": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/node": "20.0.0",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"eslint": "8.39.0",
"eslint-config-next": "13.4.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"jest": "^29.6.1",
"jest-mock-extended": "^3.0.4",
"prisma-mock": "^0.8.2",
"ts-node": "^10.9.1"
}
}