-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
{
"name": "sncollection",
"description": "Sneaker collection",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier . --write",
"format": "pnpm run lint && pnpm run prettier",
"type:check": "tsc --pretty --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"db:migrate": "prisma migrate dev",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"final-form": "^4.20.10",
"lucide-react": "^0.274.0",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-final-form": "^6.5.9",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.0",
"@storybook/manager-api": "^7.4.0",
"@storybook/nextjs": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.4.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.6.13",
"postcss": "8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^5.2.0",
"storybook": "^7.4.0",
"storybook-addon-pseudo-states": "^2.1.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.5",
"yarn": "1.22.19",
"pnpm": "8.7.4"
}
}