-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "solory",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "prisma migrate dev && prisma generate",
"push:db:dev": "prisma db push",
"generate:db:dev": "prisma generate",
"prisma:reset": "prisma migrate reset"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/open-sans": "^5.0.28",
"@fontsource/roboto": "^5.0.13",
"@hookform/resolvers": "^3.4.2",
"@prisma/client": "^5.15.0",
"@sendgrid/mail": "^8.1.3",
"@tanstack/react-table": "^8.17.3",
"bcrypt": "^5.1.1",
"chakra-react-select": "^4.7.6",
"framer-motion": "^11.2.10",
"jose": "^5.4.0",
"lodash.debounce": "^4.0.8",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-to-print": "^2.15.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.14.1",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.3",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.38",
"prettier": "^3.3.0",
"prisma": "^5.15.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}