-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
126 lines (126 loc) · 3.52 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@umijs/tnf",
"version": "0.1.4",
"homepage": "https://github.com/umijs/tnf",
"bugs": "https://github.com/umijs/tnf/issues",
"repository": {
"type": "git",
"url": "https://github.com/umijs/tnf"
},
"scripts": {
"bootstrap:examples": "tsx scripts/bootstrapExample.ts",
"bootstrap:funplugins": "tsx scripts/bootstrapFunplugin.ts",
"build": "father build",
"changeset": "tsx scripts/changeset.ts && changeset",
"check": "prettier --check .",
"ci": "npm run check && npm run build && npm run tsc && npm run test --run && npm run test:e2e && father doctor",
"dev": "father dev",
"format": "prettier --write .",
"release": "tsx scripts/release.ts",
"release:create-tnf": "pnpm --filter create-tnf release",
"test": "vitest",
"test:e2e": "tsx scripts/e2e.ts",
"tsc": "tsc --noEmit"
},
"bin": {
"tnf": "bin/tnf.js"
},
"files": [
"bin",
"client",
"dist",
"templates"
],
"exports": {
"./package.json": "./package.json",
"./router": "./client/router.js",
"./ssr": "./client/ssr/ssr.js",
".": "./dist/index.js"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@tanstack/react-router": "^1.79.0",
"@tanstack/router-devtools": "^1.79.0",
"@tanstack/router-generator": "^1.79.0",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/connect-history-api-fallback": "^1.5.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-http-proxy": "^1.6.6",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/spdy": "^3.4.9",
"@types/yargs-parser": "^21.0.3",
"@umijs/mako": "^0.9.4",
"body-parser": "^1.20.3",
"c12": "^2.0.1",
"chokidar": "^4.0.1",
"click-to-react-component": "1.1.0",
"compression": "^1.7.5",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.21.1",
"express-http-proxy": "^2.1.1",
"fs-extra": "^11.1.0",
"get-port-please": "^3.1.2",
"glob": "^11.0.0",
"http-proxy-middleware": "^3.0.3",
"jsesc": "^3.0.2",
"json5": "^2.2.3",
"magicast": "^0.3.5",
"multer": "1.4.5-lts.1",
"path-to-regexp": "1.7.0",
"pathe": "^1.1.2",
"picocolors": "^1.1.1",
"random-color": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sirv": "^3.0.0",
"spdy": "^4.0.2",
"tiny-invariant": "^1.3.3",
"yargs-parser": "^21.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@manypkg/get-packages": "^2.2.2",
"@playwright/test": "^1.48.2",
"@total-typescript/tsconfig": "^1.0.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jsesc": "^3.0.3",
"father": "^4.5.1",
"git-repo-info": "^2.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"serve-handler": "^6.1.6",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"zx": "^8.2.0"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --no-error-on-unmatched-pattern --cache --write"
],
"*.ts?(x)": [
"prettier --no-error-on-unmatched-pattern --cache --parser=typescript --write"
]
},
"engines": {
"node": ">=18.13",
"pnpm": "^8.0.0"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.18.0",
"pnpm": "8.15.1"
}
}