forked from microsoft/TypeScript-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.31 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
{
"private": true,
"name": "root",
"workspaces": [
"packages/create-typescript-playground-plugin",
"packages/typescript-vfs",
"packages/ts-twoslasher",
"packages/shiki-twoslash",
"packages/gatsby-remark-shiki-twoslash",
"packages/community-meta",
"packages/documentation",
"packages/handbook-epub",
"packages/sandbox",
"packages/playground",
"packages/playground-examples",
"packages/tsconfig-reference",
"packages/twoslash-webworker",
"packages/typescriptlang-org"
],
"engines": {
"node": ">=13"
},
"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.5.6"
},
"resolutions": {
"@types/react": "16.9.17",
"node-gyp": "5.1.0",
"typescript": "4.0.2",
"prettier": "^2.0.2"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!intl-messageformat|intl-messageformat-parser).+\\.js$"
]
},
"scripts": {
"bootstrap": "yarn workspaces foreach -v -a --exclude root run bootstrap && BOOTSTRAPPING=true yarn workspaces foreach -v -a --exclude root run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"yarn workspace typescriptlang-org start\" --kill-others",
"start-twoslash": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"yarn workspace typescriptlang-org start-twoslash\" --kill-others",
"build": "yarn workspaces foreach -v -a --exclude root 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",
"test": "CI=true yarn workspaces foreach -v -a --exclude root run test"
},
"dependencies": {
"@types/express": "^4.17.6",
"serve-handler": "^6.1.2"
},
"repository": "microsoft/TypeScript-Website",
"author": "Deploy Bot <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
}
}