-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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": "fischer",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/db/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "yarn prisma migrate dev",
"seed": "yarn prisma migrate reset"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.5",
"@prisma/client": "^4.9.0",
"@reduxjs/toolkit": "^1.9.1",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/validator": "^13.7.11",
"autoprefixer": "^10.4.13",
"bcrypt": "^5.1.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.5",
"jsonwebtoken": "^9.0.0",
"next": "13.1.5",
"next-auth": "^4.18.10",
"openai": "^3.1.0",
"pg": "^8.8.0",
"postcss-cli": "^10.1.0",
"postgres": "^3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.7.1",
"react-redux": "^8.0.5",
"reflect-metadata": "^0.1.13",
"swr": "^2.0.3",
"victory": "^36.6.8"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/redux-logger": "^3.0.9",
"postcss": "^8.4.21",
"prisma": "^4.9.0",
"redux-logger": "^3.0.6",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}