-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-types": "supabase gen types typescript --project-id ${PROJECT_ID} > lib/database.types.ts"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@hotjar/browser": "^1.0.7",
"@material-ui/core": "^4.12.4",
"@material-ui/styles": "^4.11.5",
"@mui/icons-material": "^5.11.16",
"@mui/joy": "^5.0.0-alpha.79",
"@mui/lab": "^5.0.0-alpha.126",
"@mui/material": "^5.12.1",
"@mui/x-data-grid": "^6.2.1",
"@next/bundle-analyzer": "^13.4.4",
"@sentry/nextjs": "^7.53.1",
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/supabase-js": "^2.20.0",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-html-parser": "^2.0.2",
"@types/react-router": "^5.1.20",
"@types/react-window": "^1.8.5",
"@wojtekmaj/async-array-utils": "^1.7.0",
"axios": "^1.4.0",
"canvas-confetti": "^1.6.0",
"dayjs": "^1.11.7",
"eslint": "8.35.0",
"eslint-config-next": "13.2.1",
"launchdarkly-js-client-sdk": "^3.1.3",
"launchdarkly-react-client-sdk": "^3.0.6",
"lodash": "^4.17.21",
"next": "13.4.5",
"numeral": "^2.0.6",
"plaid": "^13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-html-parser": "^2.0.2",
"react-pdf": "^7.0.1",
"react-plaid-link": "^3.4.0",
"react-quill": "^2.0.0",
"react-toastify": "^9.1.2",
"react-window": "^1.8.8",
"sass": "^1.62.0",
"typescript": "4.9.5",
"zod": "^3.21.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash": "^4.14.195",
"@types/numeral": "^2.0.2",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint-plugin-json-format": "^2.0.1",
"postcss": "^8.4.23",
"supabase": "^1.50.4",
"tailwindcss": "^3.3.1"
}
}