-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.41 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
{
"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/",
"lint:stylelint": "stylelint resources/assets/sass/**/*",
"doc": "redocly build-docs -o public/apidoc.html openapi.yaml",
"doc-watch": "chokidar openapi.yaml --initial -c \"npm run doc\"",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@redocly/cli": "^1.34.3",
"@tabler/icons-webfont": "^3.35.0",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.70.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": "^18.3.3",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"bootstrap": "^4.6.2",
"cal-heatmap": "^4.2.4",
"chart.js": "^4.4.9",
"chokidar-cli": "^3.0.0",
"classnames": "^2.5.1",
"clipboard": "^2.0.11",
"date-fns": "^4.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"laravel-vite-plugin": "^1.3.0",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"popper.js": "^1.14.7",
"postcss": "^8.5.6",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.0",
"qs": "^6.14.1",
"react": "^18.3.1",
"react-bootstrap": "^1.6.4",
"react-dom": "^18.3.1",
"react-refresh": "^0.18.0",
"react-router": "^7.12.0",
"sass": "^1.97.3",
"stylelint": "^14.16.1",
"stylelint-config-recess-order": "^3.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.27.0",
"vite": "^6.4.1"
},
"stylelint": {
"customSyntax": "postcss-scss",
"extends": "stylelint-config-recess-order"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix"
],
"*.{ts,tsx,js}": [
"eslint --fix"
],
"*.php": [
"composer fix"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}