-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.73 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
{
"name": "pwa",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=--max-old-space-size=8192 next dev",
"build": "NODE_OPTIONS=--max-old-space-size=8192 next build",
"start": "next start",
"lint": "next lint",
"i18n": "ts-node ./update-i18n.ts; prettier ./i18n/dictionaries/*.json --write",
"prebuild": "ts-node ./prebuild.ts",
"postbuild": "ts-node ./postbuild.ts",
"contributors": "ts-node ./contributors.ts"
},
"dependencies": {
"@docsearch/css": "^3.5.2",
"@docsearch/react": "^3.5.2",
"@formatjs/intl-localematcher": "^0.2.32",
"@mdx-js/loader": "^2.3.0",
"@monaco-editor/react": "^4.5.2",
"@next/mdx": "^13.4.19",
"@octokit/plugin-throttling": "^6.1.0",
"@octokit/rest": "^20.0.1",
"@tailwindcss/typography": "^0.5.9",
"@types/http-headers": "^3.0.0",
"@types/swagger-ui": "^3.52.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"gray-matter": "^4.0.3",
"gsap": "^3.12.2",
"highlight.js": "^11.8.0",
"http-headers": "^3.0.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^2.15.0",
"markdown-it": "^13.0.1",
"negotiator": "^0.6.3",
"next": "13.5.1",
"next-themes": "npm:@wits/next-themes@^0.2.16",
"octokit": "^2.1.0",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.9.11",
"rehype-slug": "^5.1.0",
"remark-frontmatter": "^4.0.1",
"remark-mdx-frontmatter": "^3.0.0",
"rxjs": "^7.8.1",
"sharp": "^0.32.5",
"shiki": "^0.14.3",
"swagger-ui": "^5.4.2",
"unist-util-visit": "^4.1.2",
"yaml": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@octokit/types": "^9.3.2",
"@popperjs/core": "^2.11.8",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/mapbox-gl": "^2.7.13",
"@types/markdown-it": "^12.2.3",
"@types/negotiator": "^0.6.1",
"@types/node": "^18.17.8",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.15",
"cpr": "^3.0.1",
"encoding": "^0.1.13",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@babel/core": "^7.19.0",
"@popperjs/core": "^2.11.6"
}
}