-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.98 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
{
"name": "ash",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"postbuild": "node -r dotenv/config ./.next/server/render-json-feed > ./public/feed.json",
"start": "next start",
"lint": "next lint"
},
"author": "Ash",
"license": "ISC",
"dependencies": {
"@mdx-js/loader": "^2.0.0-rc.2",
"@mdx-js/mdx": "^2.0.0-rc.2",
"@mdx-js/react": "^2.0.0-rc.2",
"@next/mdx": "^13.0.0",
"@sanity/client": "^3.0.3",
"@sanity/webhook": "^1.0.2",
"@stefanprobst/rehype-extract-toc": "^2.2.0",
"@stitches/react": "^1.2.4",
"@vercel/analytics": "^0.1.1",
"acorn": "^8.7.0",
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
"groq": "^2.1.4",
"hastscript": "^7.0.2",
"lodash.upperfirst": "^4.3.1",
"next": "^13.0.0",
"planetscale-node": "^0.3.0",
"react": "^18.2.0",
"react-accessible-headings": "^4.2.0",
"react-dom": "^18.2.0",
"react-hyperscript": "^3.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.3.2",
"rehype-slug": "^5.0.1",
"remark": "^14.0.1",
"remark-frontmatter": "^4.0.1",
"remark-react": "^9.0.1",
"resize-observer-polyfill": "^1.5.1",
"shiki": "^0.11.1",
"twitter-api-v2": "^1.7.0",
"unist-builder": "^3.0.0",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@json-feed-types/1_1": "^1.0.1",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/resize-observer-browser": "^0.1.4",
"csstype": "^3.0.4",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.4",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.1.2",
"typescript": "^4.0.5",
"url-loader": "^4.1.1",
"webpack": "^5.4.0",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}