-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.49 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.49 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"prod": "npm run build",
"lint": "run-s lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint resources/ frontend/",
"lint:stylelint": "stylelint resources/assets/sass/**/* frontend/**/*.css",
"doc": "redocly build-docs -o public/apidoc.html openapi.yaml",
"doc-watch": "chokidar openapi.yaml --initial -c \"npm run doc\"",
"tsp:compile": "tsp compile tsp",
"tsp:watch": "tsp compile tsp --watch",
"tsp:format": "tsp format '**/*.tsp'",
"api:gen": "openapi-typescript ./tsp-output/schema/openapi.yaml -o ./frontend/api/schema.ts --redocly ./tsp/redocly.yaml",
"api:build": "run-s tsp:compile api:gen",
"api:watch": "chokidar './tsp/**/*.tsp' --initial -c 'npm run api:build'",
"prepare": "husky"
},
"devDependencies": {
"@bprogress/react": "^1.2.7",
"@date-fns/tz": "^1.4.1",
"@eslint/js": "^10.0.1",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@redocly/cli": "^2.26.0",
"@tabler/icons-webfont": "3.35.0",
"@tailwindcss/vite": "^4.1.14",
"@tanstack/react-query": "^5.97.0",
"@tanstack/react-query-devtools": "^5.97.0",
"@types/bootstrap": "^4.6.2",
"@types/clipboard": "^2.0.10",
"@types/jquery": "^3.5.32",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/qs": "^6.9.18",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-modal": "^3.16.3",
"@typespec/compiler": "^1.11.0",
"@typespec/http": "^1.11.0",
"@typespec/openapi": "^1.11.0",
"@typespec/openapi3": "^1.11.0",
"@vitejs/plugin-react": "^6.0.1",
"bootstrap": "^4.6.2",
"cal-heatmap": "^4.2.4",
"chart.js": "^4.5.1",
"chokidar-cli": "^3.0.0",
"classnames": "^2.5.1",
"clipboard": "^2.0.11",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"laravel-vite-plugin": "^3.0.0",
"linkify-react": "^4.3.2",
"linkifyjs": "^4.3.2",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"openapi-fetch": "^0.17.0",
"openapi-typescript": "^7.13.0",
"popper.js": "^1.14.7",
"postcss": "^8.5.9",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.2",
"qs": "^6.14.2",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.2.5",
"react-modal": "^3.16.3",
"react-refresh": "^0.18.0",
"react-router": "^7.14.0",
"sass": "^1.99.0",
"sonner": "^2.0.7",
"stylelint": "^17.6.0",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-order": "^8.1.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8"
},
"stylelint": {
"customSyntax": "postcss-scss",
"extends": "stylelint-config-recess-order"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix"
],
"*.{ts,tsx,js}": [
"eslint --fix"
],
"*.php": [
"composer fix"
]
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}