forked from microsoft/TypeScript-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.25 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
{
"private": true,
"name": "root",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=13, < 15"
},
"devDependencies": {
"concurrently": "^5.1.0",
"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",
"git-branch-is": "^3.1.0",
"husky": "^4.2.3",
"pleb": "^2.6.1",
"reflect-metadata": "^0.1.13"
},
"resolutions": {
"@types/react": "16.9.17",
"@types/estree": "0.0.46",
"node-gyp": "5.1.0",
"typescript": "4.5.0-beta",
"tslib": "2.1.0",
"prettier": "^2.0.2",
"shelljs": "0.8.4",
"sharp": "0.28.1"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!intl-messageformat|intl-messageformat-parser).+\\.js$"
]
},
"scripts": {
"bootstrap": "yarn workspaces foreach -v -t --exclude root run bootstrap && BOOTSTRAPPING=true yarn workspaces foreach -v -t --exclude root run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"yarn workspace typescriptlang-org start\"",
"build": "yarn workspaces foreach -v -t --exclude root --exclude typescriptlang-org run build",
"build-site": "yarn workspace typescriptlang-org build",
"compile": "yarn workspace typescriptlang-org tsc",
"update-snapshots": "yarn workspace typescriptlang-org update-snapshots",
"clean": "yarn workspace typescriptlang-org gatsby clean",
"clean-twoslash": "rm -rf packages/.cache/twoslash",
"test": "CI=true yarn workspaces foreach -v -t --exclude root run test",
"update-test-snapshots": "CI=true yarn workspaces foreach --include gatsby-remark-shiki-twoslash --include @typescript/twoslash --include shiki-twoslash --include @typescript/vfs run test -u"
},
"dependencies": {
"@oss-docs/sync": "^1.1.4",
"@types/express": "^4.17.6",
"gray-matter": "4.0.2",
"node-polyfill-webpack-plugin": "^1.1.0",
"serve-handler": "^6.1.2",
"xmldom": "^0.5.0"
},
"repository": "microsoft/TypeScript-Website",
"author": "Deploy Bot <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
},
"packageManager": "[email protected]"
}