This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 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
{
"name": "@json-schema-org/react-blog",
"version": "0.1.0",
"description": "JSON Schema blog",
"scripts": {
"dev": "node scripts/build-post-list.js && node scripts/build-rss.js && next -p 8080",
"build": "node scripts/build-post-list.js && node scripts/build-rss.js && next build",
"start": "next start",
"export": "next export",
"lint": "yarn lint:js",
"lint:js": "eslint --ignore-path .gitignore .",
"generate:assets": "echo \"No assets to configure\"",
"test": "echo \"No tests configured yet\"",
"release": "echo \"No release to npm for this project\""
},
"license": "Apache-2.0",
"dependencies": {
"@fec/remark-a11y-emoji": "^1.0.0",
"@fullhuman/postcss-purgecss": "^2.2.0",
"@mdx-js/loader": "^1.6.4",
"@mdx-js/react": "^1.6.4",
"@next/mdx": "^9.4.2",
"@octokit/graphql": "^4.6.0",
"@tailwindcss/ui": "^0.3.0",
"@zeit/next-css": "^1.0.1",
"autoprefixer": "^9.7.6",
"dotenv": "^8.2.0",
"gray-matter": "^4.0.2",
"jgexml": "^0.4.4",
"lodash": "^4.17.21",
"markdown-to-txt": "^1.0.1",
"markdown-toc": "1.2.0",
"moment": "^2.26.0",
"next": "^12.2.0",
"node-fetch": "^2.6.1",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-gtm-module": "^2.0.11",
"react-scrollspy": "^3.4.2",
"react-syntax-highlighter": "^15.4.3",
"react-text-truncate": "^0.16.0",
"react-twitter-embed": "^3.0.3",
"react-typing-animation": "^1.6.2",
"react-youtube-embed": "^1.0.3",
"reading-time": "^1.2.0",
"remark-frontmatter": "^2.0.0",
"remark-gemoji-to-emoji": "^1.1.0",
"remark-heading-id": "^1.0.0",
"remark-images": "^2.0.0",
"remark-slug": "^6.0.0",
"tailwindcss": "^1.4.6",
"tailwindcss-animations": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.20.0"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.10"
}
}