-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 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
{
"name": "marketplace",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">14.0.0"
},
"scripts": {
"postinstall": "prisma generate",
"dev": "cross-env NODE_OPTIONS='--inspect' next dev -p 3003",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"seed": "ts-node seed.ts",
"prepack": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/s3-request-presigner": "^3.332.0",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.10.0",
"@mantine/carousel": "^6.0.8",
"@mantine/core": "^6.0.10",
"@mantine/dropzone": "^6.0.7",
"@mantine/ds": "^6.0.7",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^6.0.10",
"@mantine/next": "^6.0.7",
"@mantine/notifications": "^6.0.9",
"@mantine/nprogress": "^6.0.9",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.12.0",
"@react-buddy/ide-toolbox-next": "^2.4.0",
"@react-buddy/palette-mantine-core": "^6.0.0",
"@react-buddy/palette-mantine-form": "^6.0.0",
"@tabler/icons-react": "^2.16.0",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@upstash/ratelimit": "^0.4.2",
"@upstash/redis": "^1.20.4",
"@vercel/analytics": "^1.0.0",
"autoprefixer": "10.4.14",
"aws-sdk": "^2.1367.0",
"axios": "^1.3.6",
"embla-carousel-react": "^7.1.0",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"joi": "^17.9.1",
"lodash": "^4.17.21",
"mantine-datatable": "^2.4.16",
"morgan": "^1.10.0",
"next": "13.3.0",
"next-auth": "^4.22.0",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addon-mdx-gfm": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/nextjs": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"@tailwindcss/typography": "^0.5.9",
"@types/next-auth": "^3.15.0",
"cross-env": "^7.0.3",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"storybook": "^7.0.6",
"ts-node": "^10.9.1"
}
}