-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.8 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TanStack/config.git"
},
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
"test": "pnpm run test:ci",
"test:pr": "nx affected --targets=test:sherif,test:docs,test:eslint,test:types,test:build,build",
"test:ci": "nx run-many --targets=test:sherif,test:docs,test:eslint,test:types,test:build,build",
"test:build": "nx affected --target=test:build",
"test:types": "nx affected --target=test:types",
"test:eslint": "nx affected --target=test:eslint",
"test:sherif": "sherif",
"test:docs": "node scripts/verify-links.ts",
"build": "nx affected --target=build",
"build:all": "nx run-many --target=build",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
"dev": "pnpm run watch",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format",
"changeset:publish": "changeset publish"
},
"nx": {
"includedScripts": [
"test:docs",
"test:sherif"
]
},
"devDependencies": {
"@arethetypeswrong/core": "catalog:",
"@changesets/cli": "catalog:",
"@svitejs/changesets-changelog-github-compact": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"jiti": "catalog:",
"jsdom": "catalog:",
"markdown-link-extractor": "catalog:",
"nx": "catalog:",
"premove": "catalog:",
"prettier": "catalog:",
"publint": "catalog:",
"sherif": "catalog:",
"tinyglobby": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
}
}