-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
35
36
37
38
39
40
41
42
{
"name": "ploydok",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"typecheck": "turbo typecheck",
"test": "turbo test",
"check:spdx": "bun run scripts/check-spdx.ts",
"openapi:docs": "NODE_ENV=test OPENAPI_OUTPUT=${OPENAPI_OUTPUT:-$HOME/Documents/lab/tools/docs/public/openapi.json} bun run scripts/generate-openapi.ts",
"db:migrate": "bun run --cwd packages/db drizzle-kit migrate",
"db:generate": "bun run --cwd packages/db drizzle-kit generate",
"audit:rootless": "bash scripts/audit-rootless.sh"
},
"devDependencies": {
"@types/bun": "latest",
"postgres": "^3.4.9",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.17",
"typescript": "5.9.3"
},
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=22"
},
"workspaces": [
"apps/api",
"apps/web",
"packages/*"
],
"dependencies": {
"@internationalized/date": "^3.12.1",
"@remixicon/react": "^4.9.0",
"motion": "^12.42.2",
"react-aria-components": "^1.17.0",
"tailwind-merge": "^3.6.0"
}
}