-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "online-marketplace",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check": "biome check --apply src"
},
"dependencies": {
"@mantine/core": "^7.3.1",
"@mantine/dates": "^7.3.1",
"@mantine/dropzone": "^7.3.1",
"@mantine/form": "^7.3.1",
"@mantine/hooks": "^7.3.1",
"@mantine/modals": "^7.3.1",
"@mantine/notifications": "^7.3.1",
"@mantine/nprogress": "^7.3.1",
"@redux-devtools/extension": "^3.3.0",
"@sinclair/typebox": "^0.31.28",
"@tabler/icons-react": "^2.44.0",
"@vercel/postgres": "^0.5.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"argon2": "^0.31.2",
"chart.js": "^4.4.1",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.28.6",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"next": "14.0.5-canary.7",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"zustand": "^4.4.7"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@svgr/webpack": "^8.1.0",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"drizzle-kit": "^0.19.13",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.11.1",
"postcss-simple-vars": "^7.0.1",
"tailwindcss": "^3",
"typescript": "^5"
}
}