-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
34
35
36
37
38
39
40
{
"name": "zimic-root",
"description": "TypeScript-first, statically inferred HTTP mocks",
"version": "0.13.0-canary.0",
"repository": {
"type": "git",
"url": "https://github.com/zimicjs/zimic.git"
},
"private": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"scripts": {
"dev": "turbo dev --parallel --continue",
"build": "turbo build --concurrency 50%",
"lint": "turbo lint:turbo --continue --concurrency 50%",
"style": "prettier --log-level warn --ignore-unknown --no-error-on-unmatched-pattern --cache",
"style:check": "pnpm style --check .",
"style:format": "pnpm style --write .",
"test": "turbo test:turbo --concurrency 20% --continue",
"types:check": "turbo types:check --continue --concurrency 50%",
"pre:commit": "lint-staged",
"pre:push": "concurrently --names style,lint 'pnpm style:check' 'turbo types:check lint:turbo --filter ...[${PARENT_REF:-origin/canary}...HEAD] --concurrency 50% --continue'",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@zimic/lint-staged-config": "workspace:*",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-sh": "^0.14.0",
"turbo": "^2.4.0"
}
}