-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.18 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
75
76
77
78
79
80
81
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "npm run prettier:fix && npm run lint:fix",
"prepare": "husky",
"migrate": "prisma migrate dev",
"postmigrate": "npx @snaplet/seed sync",
"postinstall": "prisma generate"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/theme-tools": "^2.0.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@faker-js/faker": "^8.4.1",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@mui/material": "^5.15.20",
"@mui/system": "^5.15.20",
"@prisma/client": "^5.17.0",
"dotenv": "^16.4.5",
"framer-motion": "^6.3.0",
"ics": "^3.8.1",
"googleapis": "^140.0.1",
"next": "^14.2.13",
"next-auth": "^5.0.0-beta.25",
"nodemailer": "^6.9.14",
"pnpm": "^9.4.0",
"postgres": "^3.4.4",
"prisma": "^5.16.0",
"react": "^18.2.0",
"react-calendar": "^5.0.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@snaplet/copycat": "^5.0.0",
"@snaplet/seed": "^0.97.20",
"@types/node": "^18.19.34",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"prisma": "^5.15.1",
"tsx": "^4.19.2"
},
"@snaplet/seed": {
"config": "prisma/seed/seed.config.ts"
},
"prisma": {
"seed": "npx tsx prisma/seed/seed.ts",
"schema": "./prisma/schema.prisma"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format"
],
"*.json": [
"prettier --write"
],
"schema.prisma": [
"npx prisma format"
]
}
}