-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "temp-prisma-nextjs-firstattempt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"npx serve ./storage --listen 4000 --cors --no-request-logging\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.6.1",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@reduxjs/toolkit": "^1.9.3",
"@types/express": "^4.17.14",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"connect": "^3.7.0",
"crc": "^4.1.1",
"crypto": "^1.0.1",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"formidable": "^2.0.1",
"holy-retroarch": "^0.0.21",
"javascript-time-ago": "^2.5.9",
"lucide-react": "^0.194.0",
"mime": "^3.0.0",
"mv": "^2.1.1",
"next": "^13.3.0",
"next-auth": "^4.18.8",
"prisma-query-log": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headless-pagination": "^1.1.4",
"react-hook-form": "^7.42.0",
"react-intersection-observer": "^9.4.3",
"react-query": "^3.39.2",
"react-redux": "^8.0.5",
"sanitize-filename": "^1.6.3",
"serve": "^14.1.2",
"short-uuid": "^4.2.2",
"superjson": "^1.12.3",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"ts-node": "^10.9.1",
"typescript": "4.8.4",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/formidable": "^2.0.5",
"@types/mime": "^3.0.1",
"autoprefixer": "^10.4.14",
"concurrently": "^7.6.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.6.1",
"tailwindcss": "^3.3.1",
"ts-loader": "^9.4.1"
}
}