-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@internal/root",
"version": "0.0.0",
"private": true,
"author": {
"name": "abi group GmbH",
"email": "info@abigroup.io",
"url": "https://abigroup.io"
},
"workspaces": [
"packages/*",
"examples"
],
"scripts": {
"build": "yarn turbo run build",
"check": "yarn format:check && turbo run check",
"clean": "rimraf -g -I 'coverage/' 'packages/*/{coverage,dist,.turbo}'",
"fix": "yarn format:fix && turbo run fix",
"format:check": "prettier --ignore-path .gitignore --check '{.github/**/*,*,docs/**/*}.{json{,5},md,y{,a}ml,gql}'",
"format:fix": "prettier --ignore-path .gitignore --write '{.github/**/*,*,docs/**/*}.{json{,5},md,y{,a}ml,gql}'",
"postinstall": "husky",
"start:dev": "yarn turbo watch start:dev",
"test-unit": "vitest --run --coverage",
"test-unit:watch": "vitest"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"**/package.json": "sort-package-json",
"{.github/**/*,*,docs/**/*}.{json{,5},md,y{,a}ml,gql}": "prettier --write"
},
"prettier": "@abinnovision/prettier-config",
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.4",
"@abinnovision/prettier-config": "^2.1.5",
"@commitlint/cli": "^20.5.0",
"@vitest/coverage-v8": "^4.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"sort-package-json": "^3.6.1",
"turbo": "^2.8.21",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"packageManager": "yarn@4.13.0"
}