-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.05 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
{
"name": "anteater-api",
"version": "2.0.0",
"private": true,
"description": "The official Anteater API monorepo",
"homepage": "https://docs.icssc.club/anteaterapi",
"license": "MIT",
"type": "module",
"scripts": {
"check:biome": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --colors=off",
"check:prettier": "prettier --write **/*.md **/*.toml **/*.yml **/*.yaml **/*.json",
"check:types": "pnpm -r check:types",
"db:generate": "dotenv -- pnpm --filter '@packages/db' generate",
"db:migrate": "dotenv -- pnpm --filter '@packages/db' migrate",
"db:studio": "dotenv -- pnpm --filter '@packages/db' studio",
"deploy": "dotenv -- pnpm -r run deploy",
"dev": "dotenv -- pnpm --filter '@apps/api' dev",
"postinstall": "lefthook install"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"dotenv-cli": "7.4.2",
"lefthook": "1.8.2",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-toml": "2.0.1",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}