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
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "tanstack-app-creators",
"description": "Tanstack Application Builder",
"bin": "./dist/index.js",
"type": "module",
"scripts": {
"cleanNodeModules": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"build": "nx run-many --target=build --parallel 5",
"cipublish": "node scripts/publish.js",
"dev": "nx run-many --target=dev --parallel 10",
"test": "nx run-many -t test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/TanStack/create-tsrouter-app.git"
},
"devDependencies": {
"@tanstack/config": "^0.16.2",
"eslint": "^9.20.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"nx": "20.6.4",
"typescript": "^5.6.3",
"husky": "^8.0.0"
},
"packageManager": "pnpm@9.15.5",
"pnpm": {
"overrides": {
"create-start-app": "workspace:*",
"create-tanstack": "workspace:*",
"create-tsrouter-app": "workspace:*",
"@tanstack/cta-cli": "workspace:*",
"@tanstack/cta-engine": "workspace:*",
"@tanstack/cta-ui": "workspace:*",
"@tanstack/cta-framework-react-cra": "workspace:*",
"@tanstack/cta-framework-solid": "workspace:*"
}
},
"workspaces": [
"./cli/*",
"./packages/*",
"./frameworks/*"
],
"dependencies": {
"@tanstack/config": "^0.16.2"
}
}