-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.23 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.23 KB
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
{
"name": "claudify-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot ./src/index.ts",
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
"start": "bun ./dist/index.js",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "bunx biome check ./src",
"lint:fix": "bunx biome check --write ./src",
"format": "bunx biome format --write ./src",
"typecheck": "bunx tsc --noEmit",
"qa": "bun run lint && bun run typecheck && bun test",
"db:migrate": "bun ./scripts/migrate.ts",
"deploy:dev": "railway up --environment development",
"deploy:prod": "railway up --environment production",
"deploy:gcp": "gcloud run deploy $(jq -r .name package.json)-staging --source . --region us-central1 --allow-unauthenticated --port 3000",
"deploy:gcp:prod": "gcloud run deploy $(jq -r .name package.json) --source . --region us-central1 --allow-unauthenticated --port 3000"
},
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "latest",
"typescript": "^5.9.0"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
}
}