-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
78 lines (78 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
{
"name": "http-toolkit-site",
"private": true,
"version": "0.1.0",
"description": "httptoolkit.com",
"main": "n/a",
"scripts": {
"dev": "next dev",
"dev-docker": "npm run build && docker build . --tag htk-website && docker run --rm -it -p 8080:80 htk-website",
"build": "next build && next-image-export-optimizer",
"analyze-bundle": "ANALYZE=true npm run build",
"start": "next start -p 4000",
"check-types": "tsc --noemit",
"generate-rss": "node ./src/scripts/generate-rss.js",
"postbuild": "next-sitemap && npm run generate-rss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/httptoolkit-website.git"
},
"author": "Tim Perry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/httptoolkit/httptoolkit-website/issues"
},
"homepage": "https://github.com/httptoolkit/httptoolkit-website",
"dependencies": {
"@docsearch/react": "^3.6.0",
"@httptoolkit/accounts": "^3.0.1",
"@httptoolkit/util": "^0.1.5",
"@phosphor-icons/react": "^2.1.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-tooltip": "^1.0.7",
"date-fns": "^1.29.0",
"fs-extra": "^6.0.0",
"gray-matter": "^4.0.3",
"lodash-es": "^4.17.21",
"marked": "^12.0.0",
"mobx": "^6.12.1",
"mobx-react-lite": "^4.0.6",
"next": "^14.2.22",
"next-image-export-optimizer": "^1.12.3",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"posthog-js": "^1.188.1",
"prismjs": "^1.27.0",
"react": "^18.2.0",
"react-countup": "^6.5.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.4",
"react-intersection-observer": "^9.8.2",
"react-plock": "^3.1.0",
"react-use": "^17.5.0",
"react-use-clipboard": "^1.0.9",
"server-only": "^0.0.1",
"styled-components": "^6.1.8",
"styled-reset": "^4.5.2",
"vaul": "^0.9.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.6.6",
"@next/bundle-analyzer": "^14.2.1",
"@svgr/webpack": "^8.1.0",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.11",
"@types/node": "^20",
"@types/prismjs": "^1.26.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"html-minifier": "^4.0.0",
"rss": "^1.2.2",
"showdown": "^2.1.0",
"typescript": "^5"
}
}