-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.3 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
{
"name": "cs-hub-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"pre-commit": "lint-staged",
"fetch-swagger": "dotenv -e .env -- sh -c 'fetch-swagger --url \"$NEXT_PUBLIC_SWAGGER_URL\" --username \"$NEXT_PUBLIC_SWAGGER_USERNAME\" --password \"$NEXT_PUBLIC_SWAGGER_PASSWORD\"'",
"generate-all": "dotenv -e .env -- sh -c 'generate-all --uri \"$NEXT_PUBLIC_SWAGGER_URL\" --username \"$NEXT_PUBLIC_SWAGGER_USERNAME\" --password \"$NEXT_PUBLIC_SWAGGER_PASSWORD\"'"
},
"dependencies": {
"@nextui-org/react": "^2.6.8",
"@nextui-org/theme": "^2.4.3",
"@tanstack/react-query": "^5.61.0",
"@tanstack/react-query-devtools": "^5.62.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"ky": "^1.7.2",
"lucide-react": "^0.468.0",
"next": "15.0.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.5",
"ts-pattern": "^5.5.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vercel/style-guide": "^6.0.0",
"dotenv-cli": "^7.4.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}