-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 948 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 948 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
{
"name": "ufabc-next-web",
"private": true,
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "turbo run build",
"build:staging": "turbo run build:staging",
"dev": "turbo run dev",
"dev:staging": "turbo run dev:staging",
"dev:prod": "turbo run dev:prod",
"dev:app": "turbo run dev --filter=./apps/container",
"dev:app:staging": "turbo run dev:staging --filter=./apps/container",
"dev:app:prod": "turbo run dev:prod --filter=./apps/container",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"tsc": "turbo run tsc --parallel"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"eslint": "^9.33.0",
"@ufabc-next/eslint-config": "workspace:*",
"prettier": "^3.1.0",
"turbo": "^2.5.3"
},
"dependencies": {
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
}
}