-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.09 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": "hurlurl",
"version": "0.1.0",
"description": "Hurlurl can take a list of urls and create one url that randomly redirects to one of them.",
"scripts": {
"tailwind": "tailwindcss -i ./web/input.css -o ./web/output.css --watch",
"tailwind:build": "tailwindcss -i ./web/input.css -o ./web/output.css --minify",
"start": "cd web && RUSTFLAGS=--cfg=web_sys_unstable_apis trunk serve",
"start:backend": "cd urllb && cargo run",
"fix": "RUSTFLAGS=--cfg=web_sys_unstable_apis cargo fix",
"format": "RUSTFLAGS=--cfg=web_sys_unstable_apis cargo fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasmerlin/hurlurl.git"
},
"author": "Lucas Meurer",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasmerlin/hurlurl/issues"
},
"homepage": "https://github.com/lucasmerlin/hurlurl#readme",
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"daisyui": "^2.51.5",
"tailwindcss": "^3.3.1"
},
"dependencies": {
"postcss": "^8.4.23"
},
"packageManager": "yarn@3.2.4"
}