forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
{
"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",
"clean": "npx rimraf --glob '**/{tmp,dist,node_modules,coverage,reports}'",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"format": "nx run-many --target=format",
"format:fix": "nx run-many --target=format: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 install"
},
"dependencies": {
"types": "^0.1.1"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.0.4",
"@auto-it/core": "^11.0.4",
"@auto-it/first-time-contributor": "^11.0.4",
"@auto-it/omit-commits": "^11.0.4",
"@auto-it/omit-release-notes": "^11.0.4",
"@auto-it/released": "^11.0.4",
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"auto": "^11.0.4",
"eslint": "^8.56.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.6.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lerna": "^8.0.1",
"lint-staged": "^15.2.0",
"nx": "17.2.8",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"packageManager": "yarn@3.5.0"
}