-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "@rightcapital/frontend-style-guide",
"version": "5.0.0",
"private": true,
"description": "RightCapital's frontend style guide.",
"repository": {
"type": "git",
"url": "https://github.com/RightCapitalHQ/frontend-style-guide.git"
},
"license": "MIT",
"type": "commonjs",
"scripts": {
"build": "pnpm run --aggregate-output --filter './packages/*' build",
"change": "beachball change --no-commit",
"check": "beachball check",
"commit": "cz",
"dev": "tsc --build --watch",
"fix": "concurrently 'pnpm:fix:*' \"pnpm --filter './specs/*' fix\"",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write --list-different .",
"preinstall": "npx only-allow pnpm",
"lint": "concurrently 'pnpm:lint:*' \"pnpm --filter './specs/*' lint\"",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:prettier": "prettier -c .",
"prepare": "./scripts/prepare.sh",
"test": "pnpm run --recursive --aggregate-output --reporter-hide-prefix test",
"test:update-snapshots": "pnpm --aggregate-output --filter './specs/*' test -- -u"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@rightcapital/eslint-config": "workspace:*",
"@rightcapital/prettier-config": "workspace:*",
"@rightcapital/scripts": "workspace:*",
"@types/node": "22.10.4",
"beachball": "2.51.0",
"commitizen": "4.3.1",
"concurrently": "9.1.2",
"eslint": "9.12.0",
"eslint-plugin-eslint-plugin": "6.4.0",
"execa": "9.5.2",
"husky": "9.1.7",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}