-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.12 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.12 KB
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
{
"name": "typescriptlang-org",
"private": true,
"description": "The TypeScript Website",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build",
"clean": "gatsby clean",
"bootstrap": "yarn update-versions",
"update-static-assets": "node scripts/downloadSearchAssets.js",
"update-versions": "node scripts/getTypeScriptNPMVersions.js",
"setup-playground-cache-bust": "node scripts/cacheBustPlayground.mjs",
"setup-staging": "node scripts/setupStaging.mjs",
"create-lighthouse-json": "node scripts/createLighthouseJSON.js",
"compile-index-examples": "twoslash --reactAlso src/components/index/twoslash/*.ts src/components/index/twoslash/*.js src/components/index/twoslash/*.tsx src/components/index/twoslash/generated && node scripts/updateIndexTwoslashExamples.js",
"start": "gatsby develop",
"serve": "gatsby serve",
"test": "yarn tsc && jest"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@formatjs/intl-relativetimeformat": "^4.5.15",
"@types/node-fetch": "^2.5.3",
"@types/react-helmet": "^5.0.15",
"@typescript/playground": "0.1.0",
"@typescript/sandbox": "0.1.0",
"@typescript/twoslash": "3.1.0",
"canvas": "^2.6.1",
"gatsby": "^4.5.3",
"gatsby-link": "4.5.0",
"gatsby-plugin-catch-links": "^4.5.0",
"gatsby-plugin-client-side-redirect": "orta/gatsby-plugin-client-side-redirect#index",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^4.5.2",
"gatsby-plugin-offline": "^5.5.2",
"gatsby-plugin-react-helmet": "^5.5.0",
"gatsby-plugin-sass": "^5.5.0",
"gatsby-plugin-sharp": "^4.5.2",
"gatsby-plugin-sitemap": "^5.5.0",
"gatsby-plugin-typegen": "^2.2.4",
"gatsby-react-router-scroll": "5.5.0",
"gatsby-remark-autolink-headers": "^5.5.0",
"gatsby-remark-copy-linked-files": "^5.5.0",
"gatsby-remark-emojis": "^0.4.3",
"gatsby-remark-images": "^6.5.2",
"gatsby-remark-responsive-iframe": "^5.5.0",
"gatsby-remark-shiki-twoslash": "^3.0.17",
"gatsby-remark-smartypants": "^5.5.0",
"gatsby-source-filesystem": "^4.5.2",
"gatsby-transformer-remark": "^5.5.2",
"jsdom": "^16.2.0",
"preact": "^10.5.13",
"react": "^16.14.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intl": "^5.24.3",
"sass": "^1.48.0",
"ts-debounce": "^2.2.0",
"ts-node": "^8.6.2",
"twoslash-cli": "^1.3.10",
"typescript": "*",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@types/react": "^16.9.20",
"@types/react-dom": "^16.9.5",
"concurrently": "^5.1.0",
"gatsby-plugin-typescript": "^4.5.2",
"jest": "*",
"ts-jest": "^26.4.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
".cache"
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeScript-Website"
},
"bugs": {
"url": "https://github.com//microsoft/TypeScript-Website/issues"
},
"eslintIgnore": [
"*.js"
]
}