-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 933 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
29
30
31
32
33
34
35
{
"name": "UCAN",
"private": true,
"scripts": {
"build": "turbo run build",
"build:frontend": "cd apps/frontend && yarn build",
"build:backend": "cd apps/backend && yarn build",
"dev": "turbo run dev --parallel",
"dev-backend": "cd apps/backend && air",
"dev-frontend": "cd apps/frontend && next dev",
"dev:reload": "turbo run dev:reload --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"generate-token": "cd apps/backend && yarn generate-token"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.15",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.15",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"postcss": "^8.5.6"
}
}