-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit -p ./tsconfig.json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic",
"test": "playwright test",
"test:ui": "playwright test -c ./playwright.config.ts tests --ui"
},
"dependencies": {
"@next/third-parties": "^15.5.2",
"@tanstack/react-query": "^5.77.2",
"@tanstack/react-query-devtools": "^5.77.2",
"@types/matter-js": "^0.20.0",
"@vanilla-extract/css": "^1.17.2",
"@vanilla-extract/recipes": "^0.5.5",
"@vanilla-extract/sprinkles": "^1.6.3",
"clsx": "^2.1.1",
"framer": "^2.4.1",
"ky": "^1.8.1",
"matter-js": "^0.20.0",
"motion": "^12.23.3",
"next": "15.5.14",
"overlay-kit": "^1.8.4",
"pretendard": "^1.3.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.61.1",
"react-simplikit": "^0.0.49",
"react-spinners": "^0.17.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@playwright/test": "^1.53.1",
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-onboarding": "^10.0.0",
"@storybook/nextjs": "^10.0.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^24.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vanilla-extract/next-plugin": "^2.4.11",
"@vanilla-extract/webpack-plugin": "^2.3.19",
"chromatic": "^16.0.0",
"lefthook": "^2.0.0",
"storybook": "^10.0.0",
"typescript": "^6.0.0"
}
}