-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.96 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:eslint:fix && yarn prettier:fix",
"lint:eslint": "eslint src",
"lint:eslint:fix": "eslint src --fix",
"prettier:check": "prettier --check \"src/**/*\"",
"prettier:fix": "prettier --write \"src/**/*\""
},
"dependencies": {
"@atmina/formbuilder": "2.0.0",
"@dnd-kit/core": "^6.0.8",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^2.1.0",
"@heroicons/react": "^2.0.18",
"@mui/material": "^5.13.0",
"@prisma/client": "5.15.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^4.35.3",
"@trpc/client": "^10.29.1",
"@trpc/next": "^10.29.1",
"@trpc/react-query": "^10.29.1",
"@trpc/server": "^10.29.1",
"@uiw/react-textarea-code-editor": "^3.0.2",
"bcrypt": "^5.1.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"eml-parser": "^2.0.3",
"framer-motion": "^11.2.11",
"i18next": "^23.2.3",
"i18next-browser-languagedetector": "^8.0.0",
"isomorphic-dompurify": "^2.19.0",
"lodash.debounce": "^4.0.8",
"material-ui-confirm": "^3.0.9",
"next": "14.2.4",
"next-auth": "^4.22.1",
"next-remove-imports": "^1.0.11",
"papaparse": "^5.4.1",
"pg": "^8.10.0",
"prisma": "^5.15.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-i18next": "^14.1.2",
"react-toastify": "^10.0.5",
"superjson": "^2.2.1",
"tailwind-merge": "^2.3.0",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@next/bundle-analyzer": "^14.2.4",
"@playwright/test": "^1.38.0",
"@types/bcrypt": "^5.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "20.14.8",
"@types/papaparse": "^5.3.7",
"@types/pg": "^8.6.6",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint": "^9.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "5.1.0-rc-3563387fe3-20240621",
"immer": "^10.0.2",
"postcss": "^8.4.23",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.0-dev.20230618"
}
}