-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.14 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "yaba",
"version": "0.1.0",
"private": true,
"dependencies": {
"@animxyz/core": "^0.6.6",
"@clerk/nextjs": "^4.21.1",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^2.9.11",
"@prisma/client": "^4.15.0",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.29.13",
"@tanstack/react-query-devtools": "^4.29.13",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"argon2": "^0.30.3",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"dayjs": "^1.11.8",
"express-validator": "^6.15.0",
"file-loader": "^6.2.0",
"form-urlencoded": "^6.1.0",
"jose": "^4.14.4",
"next": "^13.4.5",
"nodemailer": "^6.9.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-plaid-link": "^3.4.0",
"react-toastify": "^9.1.3",
"uuid": "^9.0.0",
"web-vitals": "^3.3.2",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"watch": "tsc --watch",
"type-check": "tsc --noEmit",
"lint": "npx eslint . --config .eslintrc.js --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"prettier": "npx prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build -s ./stories/assets"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"next/core-web-vitals",
"next/babel"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@faker-js/faker": "^7.6.0",
"@next/eslint-plugin-next": "^13.4.5",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/cookie": "^0.5.1",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.5",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.15.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5"
}
}