-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1012 Bytes
/
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
34
{
"name": "legion-api",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"test": "vitest --config vitest.config.ts",
"lint:check": "biome ci ./src ./tests",
"lint:fix": "biome format --write ./src ./tests",
"migration:generate": "drizzle-kit generate --name=migration",
"migration:dev": "wrangler d1 migrations apply legion-db --local",
"migration:prod": "wrangler d1 migrations apply legion-db --remote=true",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.36.4",
"hono": "^4.7.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/vitest-pool-workers": "^0.5.41",
"@cloudflare/workers-types": "^4.20250204.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/bcryptjs": "^2.4.6",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.28.1",
"husky": "^9.1.7",
"vitest": "^2.1.9",
"wrangler": "^3.109.1"
}
}