-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.66 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
{
"name": "inform",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "npx prisma generate",
"start": "next start",
"format": "npx prettier --write . --ignore-path .prettierignore --cache",
"lint": "next lint -- --ignore-path .eslintignore",
"lint:fix": "npm run format && npm run lint -- --fix",
"resetdb": "npx prisma migrate reset --preview-feature",
"updatedb": "npx prisma db push",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.7.1",
"@t3-oss/env-nextjs": "^0.3.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-table": "^8.11.2",
"@trpc/client": "^10.45.0",
"@trpc/next": "^10.45.0",
"@trpc/react-query": "^10.45.0",
"@trpc/server": "^10.45.0",
"argon2": "^0.31.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint-plugin-testing-library": "^6.2.0",
"formik": "^2.4.5",
"framer-motion": "^10.16.16",
"jose": "^4.15.4",
"lucide-react": "^0.268.0",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-awesome-gravatar": "^2.0.3",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"react-scroll-to-top": "^3.0.0",
"react-timeago": "^7.2.0",
"superjson": "^1.13.3",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.4",
"zod-formik-adapter": "^1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "14.4.3",
"@types/eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.3",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-timeago": "^4.1.7",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^13.5.6",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.32",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
},
"ct3aMetadata": {
"initVersion": "7.18.0"
}
}