-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.44 KB
/
package.json
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
{
"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.9.0",
"@redocly/cli": "^1.19.0",
"@tabler/icons-webfont": "^3.22.0",
"@tanstack/react-query": "^4.0.0",
"@tanstack/react-query-devtools": "^4.0.0",
"@types/bootstrap": "^4.6.2",
"@types/classnames": "^2.2.10",
"@types/clipboard": "^2.0.7",
"@types/jquery": "^3.5.30",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"bootstrap": "^4.6.2",
"cal-heatmap": "^4.2.4",
"chart.js": "^4.4.3",
"chokidar-cli": "^3.0.0",
"classnames": "^2.5.1",
"clipboard": "^2.0.11",
"date-fns": "^4.1.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"laravel-vite-plugin": "^1.0.5",
"lint-staged": "^10.5.3",
"npm-run-all2": "^6.2.2",
"popper.js": "^1.14.7",
"postcss": "^8.4.41",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-bootstrap": "^1.6.4",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"react-router-dom": "^6.3.0",
"sass": "^1.77.8",
"stylelint": "^14.16.1",
"stylelint-config-recess-order": "^3.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11"
},
"stylelint": {
"customSyntax": "postcss-scss",
"extends": "stylelint-config-recess-order"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix"
],
"*.{ts,tsx,js}": [
"eslint --fix"
],
"*.php": [
"composer fix"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}