-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.54 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.54 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
{
"name": "bootstrapspark",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "npm run clean && npm run build-css && concurrently \"vite\" \"npm run watch-css\"",
"dev": "concurrently \"vite\" \"npm run watch-css\"",
"dev:swa": "swa start",
"dev:debug": "vite --debug",
"build": "npm run clean && npm run build-css && npm run sync:repositories-data && tsc -b && npm run generate-seo-files && vite build --mode production",
"build:analyze": "npm run build && npx vite-bundle-analyzer docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"preview:swa": "swa start docs --run \"vite preview\"",
"clean": "rimraf docs && rimraf node_modules/.vite",
"sync:bootswatch-themes": "node ./scripts/sync-bootswatch-themes.mjs",
"sync:repositories-data": "node ./scripts/sync-repositories-data.mjs",
"build-css": "sass --load-path=node_modules --quiet-deps src/scss/styles.scss src/css/styles.css",
"watch-css": "sass --load-path=node_modules --quiet-deps --watch src/scss/styles.scss:src/css/styles.css",
"generate-sitemap": "node --import tsx ./src/utils/generateSitemap.ts",
"generate-robots": "node --import tsx ./src/utils/generateRobotsTxt.ts",
"generate-seo-files": "npm run generate-sitemap && npm run generate-robots",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:build": "npm run build && npm run preview",
"update:check": "ncu",
"update:safe": "ncu -u && npm install",
"update:major": "ncu --target latest",
"prepare": "husky install",
"postinstall": "npm run sync:bootswatch-themes"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@microsoft/signalr": "^10.0.0",
"axios": "^1.15.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"bootswatch": "^5.3.8",
"date-fns": "^4.1.0",
"react": "^19.2.5",
"react-bootstrap": "^2.10.10",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^2.0.8",
"@eslint/js": "^10.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/leaflet": "^1.9.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"baseline-browser-mapping": "^2.10.20",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.0-canary-e0cc7202-20260227",
"eslint-plugin-react-refresh": "^0.5.2",
"fontawesome-free": "^1.0.4",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"leaflet": "^1.9.4",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"react-leaflet": "^5.0.0",
"rimraf": "^6.1.3",
"sass": "^1.99.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2",
"vite": "^7.3.2",
"vite-plugin-static-copy": "^3.4.0",
"vitest": "^4.1.4"
},
"overrides": {
"cookie": ">=0.7.0",
"tmp": ">=0.2.4"
}
}