-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 KB
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
{
"name": "nextpunk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3050 --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"gen": "node scripts/gen-feature.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@vanilla-extract/css": "^1.18.0",
"@yargram/core": "^1.0.0",
"@yargram/react": "^1.0.3",
"lucide-react": "^0.564.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-a11y": "^10.2.10",
"@storybook/addon-docs": "^10.2.10",
"@storybook/addon-onboarding": "^10.2.10",
"@storybook/addon-vitest": "^10.2.10",
"@storybook/nextjs-vite": "^10.2.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vanilla-extract/next-plugin": "^2.4.17",
"@vanilla-extract/vite-plugin": "^5.1.4",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-plugin-storybook": "^10.2.10",
"playwright": "^1.58.2",
"storybook": "^10.2.10",
"typescript": "^5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}