-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "epigram",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@next/third-parties": "^15.2.4",
"@tanstack/react-query": "^5.67.2",
"@tanstack/react-query-devtools": "^5.67.3",
"axios": "^1.8.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"es-toolkit": "^1.32.0",
"lenis": "^1.2.3",
"motion": "^12.4.10",
"next": "15.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^3.0.2",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.51.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-onboarding": "^8.6.4",
"@storybook/blocks": "^8.6.4",
"@storybook/nextjs": "^8.6.4",
"@storybook/react": "^8.6.4",
"@storybook/test": "^8.6.4",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"chromatic": "^11.27.0",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"eslint-plugin-storybook": "^0.11.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.6.4",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
}
}