-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.58 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
{
"name": "portfolio",
"description": "Portfolio site created with Next.js, TypeScript & Tailwind.",
"author": {
"name": "Sylvester Hofstra",
"email": "hello@slvstr.dev"
},
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check \"**/*.{js,ts,tsx,md}\"",
"format:fix": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"types": "tsc --noEmit",
"types:watch": "tsc --noEmit --watch",
"codegen": "source .env.local && npx genql --endpoint https://api.github.com/graphql --output ./src/graphql/generated -H \"Authorization: Bearer $GRAPHQL_API_TOKEN\" && pnpm format:fix",
"check": "pnpm types && pnpm lint && pnpm format",
"storybook": "sb dev -p 6006 --no-open",
"storybook:build": "sb build",
"chromatic": "npx chromatic",
"upgrade": "pnpm upgrade --interactive",
"upgrade:latest": "pnpm upgrade --interactive --latest"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@genql/cli": "^6.3.2",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"framer-motion": "^11.0.23",
"next": "14.1.4",
"next-intl": "3.10.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.2",
"zod": "3.22.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/nextjs": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/testing-library": "^0.2.2",
"@types/node": "20.11.30",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"autoprefixer": "10.4.19",
"chromatic": "^11.3.0",
"clsx": "^2.1.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"storybook": "^8.0.5",
"tailwind-merge": "^2.2.2",
"tailwind-variants": "^0.2.1",
"tailwindcss": "3.4.3",
"typescript": "5.4.3"
},
"packageManager": "pnpm@8.15.5"
}