-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (64 loc) · 1.88 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
60
61
62
63
64
65
{
"name": "sapio-website",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "12.23.12",
"lucide": "^0.552.0",
"lucide-react": "^0.552.0",
"next": "^15.5.9",
"next-intl": "^4.4.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"sapio-widget": "^1.0.14",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.57.0",
"@storybook/addon-a11y": "^10.1.4",
"@storybook/addon-docs": "^10.1.4",
"@storybook/nextjs-vite": "^10.1.4",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"eslint-plugin-storybook": "^10.1.4",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.2.0",
"playwright": "^1.57.0",
"storybook": "^10.1.4",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite": "^7.2.6"
}
}