-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 689 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "capsomnia",
"private": true,
"scripts": {
"build:site": "tailwindcss -i docs/styles.input.css -o docs/styles.css --minify",
"dev:site": "python3 -m http.server 3000 --directory docs",
"dev:worker": "wrangler dev --local-upstream 127.0.0.1:3000 --upstream-protocol http",
"test": "node --test Tests/site-language.test.mjs Tests/worker-language-router.test.mjs",
"test:site": "node --test Tests/site-language.test.mjs",
"test:worker": "node --test Tests/worker-language-router.test.mjs",
"deploy:worker": "wrangler deploy"
},
"devDependencies": {
"@tailwindcss/cli": "^4.0.0",
"tailwindcss": "^4.0.0",
"wrangler": "4.120.0"
}
}