-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1022 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1022 Bytes
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
{
"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\"",
"build": "npm run build:assets && hugo --gc --minify",
"build:assets": "vite build",
"dev:assets": "vite build --watch --mode development",
"dev:hugo": "hugo server -D --disableFastRender",
"deploy:cloudflare": "./scripts/deploy-cloudflare.sh"
},
"devDependencies": {
"@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",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"wrangler": "^4.75.0"
},
"dependencies": {
"@tryformation/formation-web-analytics-client": "^0.1.1"
}
}