-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
79 lines (79 loc) · 2.97 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,
"name": "root",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@oss-docs/sync": "^1.1.4",
"@types/express": "^4.17.6",
"@types/node": "^18.19.50",
"@types/react": "^18.3.2",
"chalk": "^4.1.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.2",
"danger": "^9.2.10",
"danger-plugin-lighthouse": "^0.5.2",
"danger-plugin-spellcheck": "^1.5.0",
"fb-watchman": "^2.0.1",
"glob": "^7.2.3",
"gray-matter": "4.0.3",
"reflect-metadata": "^0.1.13",
"remark": "^11.0.2",
"remark-html": "^10.0.0",
"remark-shiki-twoslash": "^3.1.3",
"serve-handler": "^6.1.2"
},
"pnpm": {
"overrides": {
"remark-shiki-twoslash>@typescript/twoslash": "link:./packages/ts-twoslasher",
"remark-shiki-twoslash>@typescript/vfs": "link:./packages/typescript-vfs",
"shiki-twoslash>@typescript/twoslash": "link:./packages/ts-twoslasher",
"shiki-twoslash>@typescript/vfs": "link:./packages/typescript-vfs",
"@types/react": "^18.2.77",
"@types/estree": "0.0.46",
"@types/eslint": "7.29.0",
"assert": "2.0.0",
"rollup-plugin-typescript2": "0.34.1",
"typescript": "5.6.2",
"tslib": "^2.6.2",
"prettier": "^2.0.2",
"sharp": "0.28.1"
},
"patchedDependencies": {
"[email protected]": "patches/react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825.patch",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!intl-messageformat|intl-messageformat-parser).+\\.js$"
]
},
"scripts": {
"ci:publish": "pnpm changeset tag && pnpm publish -r",
"bootstrap": "pnpm -r run bootstrap && BOOTSTRAPPING=true pnpm -r run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"pnpm run --filter=typescriptlang-org start\"",
"build": "pnpm run --filter=!typescriptlang-org build",
"build-site": "pnpm run --filter=typescriptlang-org build",
"compile": "pnpm run --filter=typescriptlang-org tsc",
"update-snapshots": "pnpm run --filter=typescriptlang-org update-snapshots",
"clean": "pnpm run --filter=typescriptlang-org gatsby clean",
"clean-twoslash": "rm -rf packages/.cache/twoslash",
"test": "CI=true pnpm -r run test",
"update-test-snapshots": "CI=true pnpm run --filter=@typescript/twoslash --filter=@typescript/vfs test -u"
},
"repository": "microsoft/TypeScript-Website",
"author": "Deploy Bot <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
},
"packageManager": "[email protected]+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7"
}