forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.65 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
{
"private": true,
"repository": "https://github.com/tanstack/router.git",
"scripts": {
"clean": "pnpm -rc --parallel exec rm -rf build; rm -rf dist;",
"reset": "pnpm clean; pnpm -rc --parallel exec rm -rf node_modules;",
"test": "(is-ci && pnpm test:ci) || pnpm test:dev",
"test:ci": "jest",
"test:dev": "jest --watch",
"build": "rollup --config rollup.config.js",
"watch": "concurrently --kill-others \"rollup --config rollup.config.js -w\" \"tsc -b --watch\"",
"linkAll": "lerna exec 'pnpm link' --parallel",
"unlinkAll": "lerna exec 'pnpm unlink' --parallel",
"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"
},
"workspaces": [
"./packages/*",
"./examples/react/*"
],
"bin": {
"tsr": "./packages/router-cli/bin/tsr"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/parse": "^17.2.0",
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@tsconfig/svelte": "^3.0.0",
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/semver": "^7.3.13",
"axios": "^1.2.1",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"concurrently": "^7.1.0",
"current-git-branch": "^1.1.0",
"git-log-parser": "^1.2.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"luxon": "^3.1.1",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtual": "^2.10.4",
"rollup": "^3.7.5",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-visualizer": "^5.6.0",
"solid-js": "^1.6.5",
"stream-to-array": "^2.3.0",
"svelte": "^3.55.0",
"ts-node": "^10.7.0",
"typescript": "^4.9.4",
"vue": "^3.2.33"
},
"dependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-terser": "^0.2.0",
"@types/fs-extra": "^9.0.13",
"fs-extra": "^11.1.0",
"zod": "^3.20.2"
}
}