-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.56 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
{
"name": "wallowa",
"version": "0.2.0",
"type": "module",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:static": "node ./copy-static.js",
"dev:css": "npx tailwindcss -i ./src-web/app.css -o ./dist/app.css --watch",
"dev:esbuild": "node ./esbuild.watch.mjs",
"dev:backend": "WALLOWA_LOG=debug WALLOWA_LOG_FORMAT=full RUST_BACKTRACE=1 cargo run serve",
"dev": "rm -rf ./dist && npm-run-all --parallel dev:*",
"fetch": "WALLOWA_LOG=debug WALLOWA_LOG_FORMAT=full RUST_BACKTRACE=1 cargo run fetch",
"build:ts": "tsc -p tsconfig.json",
"build:css": "npx tailwindcss -i ./src-web/app.css -o ./dist/app.css --minify",
"build:esbuild": "node ./esbuild.config.mjs",
"build:static": "node ./copy-static.js",
"build:compress": "node ./compress.js",
"build:backend": "cargo build --release",
"build": "npm-run-all --sequential clean build:css build:esbuild build:static build:backend",
"preview": "cargo run --release",
"clean": "rm -rf ./dist",
"docs:dev": "vitepress dev website",
"docs:build": "vitepress build website",
"docs:preview": "vitepress preview website"
},
"devDependencies": {
"@types/alpinejs": "^3.7.2",
"daisyui": "^3.1.6",
"esbuild": "^0.18.11",
"glob": "^10.3.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
"vitepress": "^1.0.0-rc.4"
},
"dependencies": {
"@apache-arrow/ts": "^12.0.1",
"@observablehq/plot": "^0.6.9",
"alpinejs": "^3.12.3",
"htmx.org": "^1.9.2"
}
}