-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.08 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
112
113
114
115
116
117
{
"name": "bootstrapspark",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "npm@12.0.2",
"engines": {
"node": ">=26.0.0",
"npm": "12.0.2"
},
"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 prepare:data && tsc -b && npm run generate-seo-files && vite build --mode production",
"build:deploy": "npm run build",
"build:ci": "npm run lint && npm run type-check && npm run test:coverage && npm run build:deploy",
"build:analyze": "npm run build && node ./scripts/generate-bundle-analysis.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"preview:swa": "swa start docs --run \"vite preview\"",
"clean": "rimraf docs && rimraf node_modules/.vite",
"prepare:data": "node ./scripts/sync-repositories-data.mjs --local",
"sync:data": "node ./scripts/sync-repositories-data.mjs",
"sync:bootswatch-themes": "node ./scripts/sync-bootswatch-themes.mjs",
"sync:repositories-data": "npm run sync:data",
"build-css": "sass --load-path=node_modules --quiet-deps --silence-deprecation=import src/scss/styles.scss src/css/styles.css",
"watch-css": "sass --load-path=node_modules --quiet-deps --silence-deprecation=import --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",
"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.11",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"bootswatch": "^5.3.8",
"date-fns": "^4.4.0",
"react": "^19.2.8",
"react-bootstrap": "^2.10.10",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^2.0.10",
"@eslint/js": "^10.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@testing-library/jest-dom": "^6.10.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/leaflet": "^1.9.22",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"baseline-browser-mapping": "^2.11.14",
"concurrently": "^9.2.4",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^7.1.0-canary-e0cc7202-20260227",
"eslint-plugin-react-refresh": "^0.5.4",
"fontawesome-free": "^1.0.4",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"leaflet": "^1.9.4",
"lint-staged": "^16.4.0",
"prettier": "^3.9.6",
"react-leaflet": "^5.0.0",
"rimraf": "^6.1.3",
"sass": "^1.102.0",
"ts-node": "^10.9.2",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"typescript-eslint": "^8.67.0",
"vite": "^7.3.6",
"vite-plugin-static-copy": "^3.4.0",
"vitest": "^4.1.10"
},
"overrides": {
"cookie": ">=0.7.0",
"tmp": ">=0.2.4",
"esbuild": ">=0.28.1",
"adm-zip": ">=0.6.0"
},
"allowScripts": {
"@parcel/watcher@2.5.6": true,
"esbuild@0.28.1": true,
"keytar@7.9.0": true
}
}