forked from httptoolkit/httptoolkit-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"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",
"lint": "npm run check-types && next lint",
"format": "prettier \"**/*.+(ts|tsx|js|jsx|json|css)\" --write",
"precommit-hook": "lint-staged",
"prepare": "husky install",
"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": "^2.1.1",
"@httptoolkit/auth0-lock": "^11.14.0",
"@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",
"jsonwebtoken": "^8.4.0",
"lodash-es": "^4.17.21",
"marked": "^12.0.0",
"mobx": "^6.12.1",
"mobx-react-lite": "^4.0.6",
"next": "^14.2.1",
"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.57.2",
"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",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8",
"eslint-config-next": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "^4.4.0",
"html-minifier": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rss": "^1.2.2",
"showdown": "^2.1.0",
"typescript": "^5"
}
}