forked from codeit18-4-5/Plango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.51 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.51 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
84
85
86
{
"name": "plango",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.ts,.tsx --fix && prettier --write .",
"prettier": "prettier --write .",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.90.6",
"@tanstack/react-query-devtools": "^5.90.2",
"@tomickigrzegorz/react-circular-progress-bar": "^1.1.2",
"axios": "^1.13.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.555.0",
"motion": "^12.23.24",
"next": "^15.5.6",
"react": "^19.2.0",
"react-datepicker": "^8.9.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"react-loading-skeleton": "^3.5.0",
"react-responsive": "^10.0.1",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.2",
"@storybook/addon-a11y": "^10.0.3",
"@storybook/addon-docs": "^10.0.3",
"@storybook/addon-themes": "^10.0.5",
"@storybook/addon-vitest": "^10.0.3",
"@storybook/builder-webpack5": "^10.0.6",
"@storybook/nextjs": "^10.0.6",
"@svgr/webpack": "^8.1.0",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitest/browser-playwright": "^4.0.6",
"@vitest/coverage-v8": "^4.0.6",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-storybook": "^10.0.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"playwright": "^1.56.1",
"plop": "^4.0.4",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"storybook": "^10.0.3",
"tailwindcss": "^3.4.18",
"typescript": "^5",
"vitest": "^4.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --config eslint.config.mjs --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
}
}