-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.29 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "granite-monorepo",
"private": true,
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*",
"services/*",
"infra/*",
"tools",
"docs"
],
"scripts": {
"prune": "knip",
"lint": "eslint .",
"prepare": "husky",
"changeset": "changeset",
"typecheck:all": "nx run-many -t typecheck",
"test:all": "yarn test:parallel && yarn test:no-parallel",
"test:parallel": "nx run-many -t test --nxBail",
"test:no-parallel": "nx run-many -t test:no-parallel --parallel=false --nxBail",
"check-licenses": "node .scripts/licenses.mjs check",
"check-exports": "tsx --import ./.scripts/check-exports.mts",
"generate-licenses": "node .scripts/licenses.mjs generate",
"consistency-check-licenses": "node .scripts/licenses.mjs consistency-check",
"build:all": "nx run-many --targets=build",
"build:shared": "tsdown --config shared/tsdown.config.ts",
"attw:all": "yarn tools attw",
"clear": "rimraf --glob \"**/*/dist\" .nx",
"tools": "./bin/tools",
"publish:dev": "sh .scripts/publish-dev.sh"
},
"resolutions": {
"typescript": "5.8.3",
"@babel/core": "7.28.5"
},
"dependenciesMeta": {
"hermes-compiler": {
"unplugged": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/cli": "^2.29.3",
"@clack/prompts": "^0.9.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.7.0",
"@nx/devkit": "^21.0.3",
"@nx/js": "^21.0.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "catalog:tools",
"@types/react": "catalog:react-native",
"@yarnpkg/types": "^4.0.0",
"chalk": "^5.3.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"execa": "^9.5.2",
"husky": "^9.1.3",
"hygen": "6.2.11",
"knip": "^1",
"nx": "^21.0.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsdown": "catalog:tools",
"tsx": "^4.19.3",
"typescript": "catalog:tools",
"typescript-eslint": "^8.31.0",
"yargs": "^17.7.2"
}
}