-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.36 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.36 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
{
"name": "open-rtls-website",
"description": "Open RTLS one pager built with Hugo, Tailwind 4, and Vite",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "FORMATION GmbH",
"scripts": {
"dev": "npm run build:assets && concurrently -k -n VITE,HUGO -c yellow,green \"npm:dev:assets\" \"npm:dev:hugo\"",
"stop": "node ./scripts/stop-dev.mjs",
"build": "npm run check:homepage && npm run build:assets && hugo --gc --minify && npm run generate:search",
"build:assets": "vite build",
"check:homepage": "node ./scripts/check-homepage-componentization.mjs",
"dev:assets": "vite build --watch --mode development",
"dev:hugo": "hugo server -D --disableFastRender --poll 700ms",
"generate:search": "node --import tsx ./scripts/generate-search.ts",
"deploy:cloudflare": "./scripts/deploy-cloudflare.sh"
},
"devDependencies": {
"@huggingface/transformers": "3.8.1",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"wrangler": "^4.75.0"
},
"dependencies": {
"@tryformation/formation-web-analytics-client": "^0.1.1",
"@tryformation/querylight-ts": "0.9.2"
}
}