-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "@rightcapital/libraries",
"version": "1.0.2",
"main": "index.js",
"author": "RightCapital Ecosystem team <[email protected]>",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.1"
},
"repository": "https://github.com/RightCapitalHQ/frontend-libraries",
"scripts": {
"docs": "pnpm -r --filter=./packages/** docs",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"build": "pnpm run clean && pnpm -r --filter=./packages/** run build",
"clean": "pnpm -r --parallel --filter=./packages/** exec tsc --build --clean",
"pretest": "pnpm run build",
"test": "pnpm run pretest && jest",
"lint": "concurrently pnpm:lint:*",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:prettier": "prettier -c .",
"fix": "pnpm run fix:eslint && pnpm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write .",
"eachpkg": "pnpm -r --filter './packages/**'",
"commit": "cz",
"changelog:fix": "pnpm eachpkg --parallel exec generate-changelog",
"change": "beachball change --no-commit",
"check": "beachball check"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "19.0.0",
"@commitlint/config-conventional": "19.0.0",
"@commitlint/cz-commitlint": "19.0.0",
"@rightcapital/eslint-config": "38.0.0",
"@rightcapital/exceptions": "workspace:*",
"@rightcapital/prettier-config": "6.0.12",
"@types/jest": "29.5.11",
"beachball": "2.39.0",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"eslint": "9.13.0",
"husky": "9.0.7",
"inquirer": "9.2.13",
"jest": "29.7.0",
"prettier": "3.2.4",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}