-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 802 Bytes
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
{
"name": "drop",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 & bun --watch src/server/index.ts",
"build": "vite build && bun build src/server/index.ts --target=bun --outdir=dist/server",
"start": "bun dist/server/index.js",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "bun run typecheck && bun run format:check && bun run test"
},
"dependencies": {
"solid-js": "^1.9.13"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/bun": "^1.3.14",
"oxfmt": "^0.50.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vite-plugin-solid": "^2.11.12"
}
}