-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
72 lines (72 loc) · 2.18 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
{
"private": true,
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "npm run build:rss && next build",
"build:rss": "ts-node ./scripts/generate-rss.ts",
"postbuild": "next-sitemap",
"start": "next start",
"test": "jest",
"lint": "eslint . --ext ts --ext tsx --ext js",
"tsc": "tsc --pretty --noEmit",
"test-all": "npm run lint && npm run type-check && npm run test",
"analyze": "cross-env ANALYZE=1 next build && cat .next/stats.txt"
},
"dependencies": {
"@codesandbox/sandpack-react": "^0.16.0",
"@types/unist": "^2.0.6",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "^2.3.1",
"codesandbox": "^2.2.3",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.10.6",
"focus-trap-react": "^8.11.2",
"gray-matter": "^4.0.2",
"kbar": "^0.1.0-beta.34",
"mdx-prism": "^0.3.4",
"next": "latest",
"next-mdx-remote": "^3.0.1",
"next-seo": "^4.26.0",
"next-sitemap": "^1.6.148",
"polish-plurals": "^1.1.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use-clipboard": "^1.0.7",
"reading-time": "^1.4.0",
"remark-autolink-headings": "^7.0.0",
"remark-code-titles": "^0.1.2",
"remark-rehype": "^10.1.0",
"remark-slug": "^7.0.0",
"rss": "^1.2.2",
"slugify": "^1.6.0",
"unist-util-visit": "^4.1.0",
"use-clipboard-copy": "^0.2.0",
"what-input": "^5.2.10"
},
"license": "MIT",
"devDependencies": {
"@next/bundle-analyzer": "^11.0.1",
"@types/body-scroll-lock": "^3.1.0",
"@types/classnames": "^2.3.1",
"@types/mailchimp__mailchimp_marketing": "^3.0.5",
"@types/node": "^16.4.13",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@types/rss": "0.0.29",
"babel-plugin-inline-react-svg": "^2.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"react-axe": "^3.5.4",
"sass": "^1.37.5",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}