forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.2 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"repository": "https://github.com/tanstack/router.git",
"scripts": {
"clean-dist": "pnpm -rc --parallel exec 'rm -rf build dist'",
"clean-all": "pnpm -rc --parallel exec 'rm -rf build dist node_modules'",
"test": "is-ci-cli test:ci test:dev",
"test:ci": "pnpm --parallel test",
"test:dev": "vitest",
"buildNx": "nx run-many --target=build --projects=@tanstack/*",
"build": "rollup --config rollup.config.js && pnpm typecheck",
"watch": "concurrently --no-color --prefix \"watch\" --kill-others --raw \"rollup --config rollup.config.js -w\" \"tsc -b --watch --preserveWatchOutput\"",
"dev": "pnpm watch",
"prettier": "prettier \"packages/*/{src/**,examples/**/src/**}.{md,js,jsx,ts,tsx,json}\" --write",
"visualize": "pnpm -rc --parallel exec open build/stats-html.html",
"cipublish": "ts-node scripts/publish.ts",
"cipublishforce": "CI=true pnpm cipublish",
"typecheck": "tsc -b",
"typecheck-perf": "tsc -b --generateTrace ts-perf",
"gpt-generate": "ts-node gpt/generate.js"
},
"workspaces": [
"./packages/*",
"./examples/react/*",
"./examples/solid/*"
],
"pnpm": {
"overrides": {
"@tanstack/history": "workspace:*",
"@tanstack/react-router": "workspace:*",
"@tanstack/router-devtools": "workspace:*",
"@tanstack/router-cli": "workspace:*",
"@tanstack/react-router-server": "workspace:*"
}
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/parse": "^18.4.3",
"@faker-js/faker": "^8.3.1",
"@nrwl/nx-cloud": "latest",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@tanstack/react-router": "^1.0.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@tsconfig/svelte": "^5.0.2",
"@types/babel__core": "^7.20.5",
"@types/fs-extra": "^11.0.4",
"@types/luxon": "^3.3.6",
"@types/node": "^20.10.3",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@types/semver": "^7.5.6",
"axios": "^1.6.2",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"babel-preset-solid": "^1.8.6",
"concurrently": "^8.2.2",
"current-git-branch": "^1.1.0",
"fs-extra": "^11.2.0",
"git-log-parser": "^1.2.0",
"is-ci-cli": "^2.2.0",
"luxon": "^3.4.4",
"nx": "17.1.3",
"nx-cloud": "^16.5.2",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtual": "^2.10.4",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.3",
"solid-js": "^1.8.7",
"stream-to-array": "^2.3.0",
"svelte": "^4.2.8",
"ts-node": "^10.7.0",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vitest": "^0.34.6",
"vue": "^3.3.9",
"zod": "^3.22.4"
},
"resolutions": {
"use-sync-external-store": "1.2.0"
},
"dependencies": {
"glob": "^10.3.10"
}
}