-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.87 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "t3-perak-template",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate && prisma migrate deploy",
"lint": "next lint",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run format && npm run check-format && npm run check-lint && npm run check-types",
"prepare": "husky install"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.14",
"@mui/material": "^5.11.4",
"@mui/system": "^5.11.16",
"@mui/x-date-pickers": "^5.0.15",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.8.0",
"@svgr/webpack": "^6.5.1",
"@tanstack/react-query": "^4.20.0",
"@trpc/client": "^10.8.1",
"@trpc/next": "^10.8.1",
"@trpc/react-query": "^10.8.1",
"@trpc/server": "^10.8.1",
"@types/pako": "^2.0.0",
"aws-sdk": "^2.1342.0",
"axios": "^1.3.4",
"crypto-js": "^4.1.1",
"csstype": "^3.1.2",
"dayjs": "^1.11.7",
"framer-motion": "^8.5.5",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"next": "13.1.1",
"next-auth": "^4.18.7",
"next-seo": "^5.15.0",
"pako": "^2.1.0",
"react": "18.2.0",
"react-calendly": "^4.1.1",
"react-dom": "18.2.0",
"react-drag-drop-files": "^2.3.9",
"react-fast-marquee": "^1.3.5",
"react-hook-form": "^7.43.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.8.0",
"react-is": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"superjson": "1.9.1",
"swiper": "^9.1.1",
"tailwindcss-textshadow": "^2.1.3",
"ts-loader": "^9.4.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@tsconfig/next": "^1.0.4",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/luxon": "^3.2.0",
"@types/node": "^18.15.7",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.7",
"eslint": "^8.30.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.0",
"husky": "^8.0.0",
"moment": "^2.29.4",
"next-stride": "^2.5.0",
"postcss": "^8.4.14",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^4.8.0",
"tailwindcss": "^3.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"ct3aMetadata": {
"initVersion": "7.3.0"
}
}