-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "wga",
"version": "1.0.0",
"description": "Front-end build system for the Web Gallery of Art: Project Phoenix",
"private": "true",
"scripts": {
"build": "bun run build:css && bun run build:js",
"build:js": "bun build.js",
"build:css": "postcss ./resources/css/style.pcss -o ./assets/public/css/style.css",
"build:watch:css": "bun run build:css -- --watch",
"build:watch:js": "bun run build:js -- --watch",
"dev": "concurrently -n \"templ,serve,tailwind,ts,docker\" -c \"red,magenta,yellow,blue,cyan\" \"templ generate --watch\" \"air serve --dev\" \"bun run build:watch:css\" \"bun run build:js\" \"docker compose up\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackfyre/wga.git"
},
"author": "Miklós Galicz <miklos.galicz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackfyre/wga/issues"
},
"homepage": "https://github.com/blackfyre/wga#readme",
"devDependencies": {
"@playwright/test": "^1.45.2",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.14.11",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cssnano": "^6.1.2",
"daisyui": "^4.12.10",
"dotenv": "^16.4.5",
"esbuild": "0.20.1",
"esbuild-plugin-copy": "^2.1.1",
"htmx.org": "^2.0.1",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.5",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6",
"trix": "^2.1.4",
"viewerjs": "^1.11.6"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}