forked from TanStack/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.49 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.49 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/cli.git"
},
"packageManager": "pnpm@10.24.0",
"type": "module",
"scripts": {
"cleanNodeModules": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"build": "nx run-many --target=build --parallel 5",
"dev": "nx run-many --target=dev --parallel 20",
"test": "nx run-many --target=test",
"check-outdated": "node scripts/check-outdated-packages.js",
"update-outdated": "node scripts/check-outdated-packages.js --update",
"prepare": "husky install",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "^0.3.4",
"eslint": "^9.20.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.0",
"nx": "22.1.3",
"semver": "^7.6.3",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"@tanstack/create-start": "workspace:*",
"create-start-app": "workspace:*",
"create-tanstack": "workspace:*",
"create-tanstack-app": "workspace:*",
"create-tsrouter-app": "workspace:*",
"@tanstack/cli": "workspace:*",
"@tanstack/create": "workspace:*",
"@tanstack/create-ui": "workspace:*"
}
}
}