forked from microsoft/TypeScript-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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
{
"private": true,
"workspaces": [
"packages/*"
],
"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": "3.9.1-rc",
"prettier": "^2.0.2"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!intl-messageformat|intl-messageformat-parser).+\\.js$"
]
},
"scripts": {
"bootstrap": "yarn workspaces run bootstrap && yarn workspaces run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"yarn workspace typescriptlang-org start\"",
"start-twoslash": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"yarn workspace typescriptlang-org start-twoslash\"",
"build": "yarn workspaces 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 run test"
},
"dependencies": {
"serve-handler": "^6.1.2"
},
"repository": "microsoft/TypeScript-Website",
"author": "Deploy Bot <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
}
}