-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
package.json
71 lines (71 loc) · 2.41 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gitbeaker",
"private": true,
"repository": "github:jdalrymple/gitbeaker",
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"author": "Justin Dalrymple",
"workspaces": [
"packages/*"
],
"resolutions": {
"all-contributors-cli": "6.26.1"
},
"scripts": {
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"clean": "yarn dlx rimraf --glob '**/{tmp,dist,node_modules,coverage,reports}'",
"format:docs": "prettier './**/(*.json|*.yml|*.md|*.(c|m)js|*.(c|m)ts)' --ignore-path ./.prettierignore --check",
"format:docs:fix": "yarn format:docs --write",
"format:src": "prettier '**/{src,test,scripts}/**/*.ts' --ignore-path ./.prettierignore --check",
"format:src:fix": "yarn format:src --write",
"format": "yarn format:src && yarn format:docs",
"format:fix": "yarn format:src:fix && yarn format:docs:fix",
"test:types": "nx run-many --target=test:types",
"test:unit": "nx run-many --target=test:unit",
"test:integration": "nx run-many --target=test:integration",
"test:e2e": "nx run-many --target=test:e2e",
"release:next": "auto next",
"release:canary": "auto canary",
"release": "auto shipit",
"postinstall": "husky init",
"prepare": "husky"
},
"dependencies": {
"types": "^0.1.1"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.1.6",
"@auto-it/core": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@auto-it/omit-commits": "^11.1.6",
"@auto-it/omit-release-notes": "^11.1.6",
"@auto-it/released": "^11.1.6",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"auto": "^11.1.6",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-extended": "^2.4.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lerna": "^8.1.6",
"lint-staged": "^15.2.7",
"nx": "17.3.1",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]"
}