-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 892 Bytes
/
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
{
"name": "koffing-monorepo-root",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "TIMING=1 eslint \"**/*.{ts,tsx}\"",
"lint:ci": "pnpm run lint",
"build": "turbo run build",
"build:ci": "turbo run build:ci",
"test": "turbo run test --concurrency=1",
"test:ci": "turbo run test:ci --concurrency=1",
"ci": "pnpm lint:ci && pnpm build:ci && pnpm test:ci",
"format": "prettier --write \"**/*.{astro,js,jsx,ts,tsx,css,scss,md,mdx,yml,yaml,xml,toml,json}\""
},
"devDependencies": {
"@packages/preset-eslint": "workspace:^",
"@packages/preset-prettier": "workspace:^",
"@packages/preset-ts": "workspace:^",
"husky": "^8.0.3",
"turbo": "^1.10.12"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.5.0"
}
}