-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.6 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
{
"name": "front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "cross-env NODE_ENV=production ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@lexical/link": "^0.10.0",
"@lexical/list": "^0.10.0",
"@lexical/react": "^0.9.1",
"@lexical/rich-text": "^0.10.0",
"@lexical/selection": "^0.10.0",
"@lexical/utils": "^0.10.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/bundle-analyzer": "^12.3.1",
"@prisma/client": "^4.13.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@reduxjs/toolkit": "^1.8.4",
"@supabase/supabase-js": "^2.10.0",
"@swc/plugin-styled-components": "^1.1.0",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"@toast-ui/react-editor": "^3.2.0",
"autoprefixer": "^10.4.13",
"axios": "^1.1.2",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"csv-parser": "^3.0.0",
"framer-motion": "^6.5.1",
"lexical": "^0.9.1",
"lucide-react": "^0.121.0",
"next": "^13.3.4",
"next-auth": "^4.19.2",
"prisma": "^4.13.0",
"react": "18.2.0",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-drag-drop-files": "^2.3.9",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.34.2",
"react-redux": "^8.0.2",
"react-responsive": "^9.0.2",
"react-select": "^5.4.0",
"react-simple-star-rating": "^5.1.7",
"styled-components": "^5.3.5",
"tailwind-merge": "^1.11.0",
"tailwindcss": "^3.3.1",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.0",
"@types/react": "18.0.15",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "18.0.6",
"@types/react-stars": "^2.2.1",
"@types/styled-components": "^5.1.25",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.21.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"msw": "^1.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"msw": {
"workerDirectory": "public"
}
}