-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.1 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
{
"name": "parcel",
"version": "2.2.0",
"author": "Blake Rain <blake.rain@blakerain.com>",
"license": "BSD3",
"devDependencies": {
"@types/preact-custom-element": "^4.0.4",
"autoprefixer": "^10.4.14",
"cypress": "^13.15.2",
"esbuild": "^0.23.0",
"htm": "^3.1.1",
"htmx-ext-loading-states": "^2.0.0",
"htmx.org": "^2.0.1",
"lucide-static": "^0.424.0",
"postcss-import": "^16.1.0",
"preact": "^10.24.3",
"preact-custom-element": "^4.3.0",
"start-server-and-test": "^2.0.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.5.4"
},
"browserslist": "> 0.25%, not dead",
"scripts": {
"build-dev": "tailwindcss --postcss -i style/main.css -o static/main.css",
"build": "tailwindcss --postcss -i style/main.css -o static/main.css -m",
"cy:open": "cypress open",
"cy:run": "cypress run",
"ci:serve:debug": "cargo run",
"ci:serve:release": "cargo run --release",
"ci:debug": "start-server-and-test ci:serve:debug http://127.0.0.1:3000 cy:run",
"ci:release": "start-server-and-test ci:serve:release http://127.0.0.1:3000 cy:run"
}
}