-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.03 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.03 KB
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
98
99
100
101
102
{
"name": "admin-web-app",
"version": "0.1.0",
"private": true,
"engines": {
"yarn": ">=2.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@emotion/react": "^11",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11",
"@hookform/devtools": "^4.2.2",
"@hookform/resolvers": "^2.8.10",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.89",
"@mui/material": "^5.8.1",
"@mui/styled-engine-sc": "^5.8.0",
"@tanstack/match-sorter-utils": "^8.1.1",
"@tanstack/react-query": "^4.2.1",
"@tanstack/react-query-devtools": "^4.2.1",
"@tanstack/react-table": "^8.3.3",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.220",
"@tiptap/extension-link": "^2.0.0-beta.220",
"@tiptap/extension-placeholder": "^2.0.0-beta.220",
"@tiptap/extension-underline": "^2.0.0-beta.220",
"@tiptap/pm": "^2.0.0-beta.220",
"@tiptap/react": "^2.0.0-beta.220",
"@tiptap/starter-kit": "^2.0.0-beta.220",
"@visx/axis": "^2.11.1",
"@visx/event": "^2.6.0",
"@visx/glyph": "^2.10.0",
"@visx/gradient": "^2.10.0",
"@visx/grid": "^2.11.1",
"@visx/marker": "^2.11.1",
"@visx/responsive": "^2.10.0",
"@visx/shape": "^2.11.1",
"@visx/text": "^2.10.0",
"@visx/tooltip": "^2.10.0",
"@visx/xychart": "^2.11.1",
"axios": "^0.31.0",
"colorjs.io": "^0.5.0",
"d3-scale-chromatic": "^3.0.0",
"firebase": "^10.0.0",
"framer-motion": "^6.3.11",
"immer": "^9.0.14",
"is-email": "^1.0.2",
"jwt-decode": "^3.1.2",
"lucide-react": "^0.548.0",
"luxon": "^2.4.0",
"match-sorter": "^6.3.1",
"next": "15.5.18",
"nookies": "^2.5.2",
"notistack": "3.0.2",
"posthog-js": "^1.257.0",
"posthog-node": "^5.5.1",
"react": "18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-datepicker": "^4.8.0",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.1",
"react-eva-icons": "^0.0.8",
"react-hook-form": "^7.33.1",
"react-select": "^5.3.2",
"react-spring": "^9.5.0",
"react-table": "^7.8.0",
"styled-components": "^5.3.5",
"superstruct": "^0.16.0",
"use-immer": "^0.11.0",
"yup": "^0.32.11",
"zustand": "^4.1.0"
},
"devDependencies": {
"@types/d3-scale-chromatic": "^3.0.0",
"@types/luxon": "^2.3.2",
"@types/node": "17.0.45",
"@types/react": "18.3.26",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-datepicker": "^4.4.1",
"@types/react-dom": "18.3.7",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "8.57.1",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"typescript": "4.9.5"
},
"lint-staged": {
"*.{js,tsx,ts}": "eslint --cache --fix",
"*.{js,css,md,tsx,ts}": "prettier --write"
},
"packageManager": "yarn@3.8.7"
}