-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "bu-company-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@tanstack/react-query": "^5.90.10",
"antd": "^5.29.1",
"clsx": "^2.1.1",
"next": "14.2.10",
"pdfjs-dist": "^5.4.394",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-pdf": "^10.2.0",
"react-signature-canvas": "^1.0.6",
"tailwind-merge": "^2.5.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@storybook/addon-a11y": "^8.1.10",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-pdf": "^7.0.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.10",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"storybook": "^8.1.10",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^5.4.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint --fix"
],
"*.{json,md,css,scss,ts,tsx,js,jsx,cjs,mjs}": [
"prettier --write"
]
}
}