-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
33 lines (33 loc) · 1.21 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
31
32
33
{
"name": "abc-user-feedback",
"private": true,
"scripts": {
"build": "turbo build",
"build:ui": "turbo @ufb/ui#build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"dev:api": "turbo dev --filter=api",
"dev:web": "turbo dev --filter=web",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:e2e": "cd apps/e2e && pnpm test:e2e",
"test:integration": "cd apps/api && pnpm test:integration"
},
"devDependencies": {
"@ufb/prettier-config": "workspace:*",
"prettier": "^3.3.3",
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=20.11.1"
}
}