-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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": "stakekit-monorepo",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "[email protected]:stakekit/monorepo.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run --concurrency=4 build",
"clean": "turbo run clean",
"coverage": "turbo run --concurrency=4 coverage",
"coverage:ci": "turbo run --concurrency=2 coverage -- --maxWorkers=2 --forceExit",
"format": "turbo run --concurrency=4 format",
"lint": "turbo run --concurrency=4 lint",
"postinstall": "husky install",
"test": "turbo run --concurrency=4 test",
"test:ci": "turbo run --concurrency=2 test",
"regen:api-hooks": "yarn workspace @stakekit/api-hooks build && yarn workspace @stakekit/api-hooks orval"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/config-lerna-scopes": "^17.4.2",
"@types/eslint": "^8",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"prettier": "^2.8.7",
"turbo": "^1.8.3"
},
"packageManager": "[email protected]"
}