-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.89 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
53
54
55
56
57
58
59
{
"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": "module",
"scripts": {
"build": "nx run-many -t build",
"change": "nx release plan",
"check": "nx release plan:check",
"commit": "cz",
"dev": "nx watch --all -- nx run \\$NX_PROJECT_NAME:build",
"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 --run",
"test:update-snapshots": "pnpm --aggregate-output --filter './specs/*' test --run -u",
"typecheck": "nx run-many -t typecheck"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@commitlint/cz-commitlint": "21.0.2",
"@commitlint/types": "21.0.1",
"@nx/js": "22.7.5",
"@rightcapital/eslint-config": "workspace:*",
"@rightcapital/prettier-config": "workspace:*",
"@types/node": "24.13.1",
"commitizen": "4.3.1",
"concurrently": "10.0.3",
"eslint": "catalog:",
"eslint-plugin-eslint-plugin": "7.4.0",
"execa": "9.6.1",
"husky": "9.1.7",
"nx": "22.7.5",
"prettier": "catalog:",
"tsx": "4.22.4",
"typescript": "6.0.3"
},
"packageManager": "pnpm@11.11.0",
"engines": {
"node": "^22.13.0 || >=24"
}
}