-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "MDMT",
"description": "Markdown Document Template",
"version": "1.0.0",
"author": "Takayosi Amagi",
"bugs": "https://github.com/fand/mdmt/issues",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@mdx-js/loader": "^2.1.5",
"@mdx-js/mdx": "^1.6.4",
"@mdx-js/react": "^1.6.4",
"@next/mdx": "^9.4.2",
"@zeit/next-typescript": "^1.1.1",
"frontmatter": "^0.0.3",
"gray-matter": "^4.0.2",
"hamburgers": "^1.1.3",
"highlight.js": "^10.4.1",
"lodash.throttle": "^4.1.1",
"marked": "^1.1.0",
"next": "^13.0.6",
"polished": "^3.6.3",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-burgers": "^1.3.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-lazyload": "^2.6.7",
"remark-breaks": "^1.0.5",
"remark-emoji": "^2.1.0",
"remark-frontmatter": "^2.0.0",
"remark-slug": "^6.0.0",
"sanitize.css": "^11.0.1",
"stringify-object": "^3.3.0",
"styled-components": "^5.1.0",
"typescript": "^3.9.3",
"watchpack": "^1.7.2"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-inline-import-loader": "^1.0.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"fs-extra": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"tape": "^5.0.0",
"workbox-cli": "^5.1.3"
},
"homepage": "https://amagi.dev/MDMT/",
"keywords": [
"docs",
"document",
"markdown",
"mdx",
"next.js"
],
"license": "MIT",
"repository": "https://github.com/fand/mdmt",
"scripts": {
"build": "NODE_ENV=production run-s clean build:manifest build:build build:export build:nojekyll build:preload build:sw",
"build:build": "next build",
"build:export": "next export -o docs",
"build:manifest": "node scripts/generate-manifest.js",
"build:nojekyll": "touch docs/.nojekyll",
"build:preload": "node scripts/copy-preload.js",
"build:sw": "workbox generateSW scripts/workbox-config.js",
"clean": "rm -rf .next docs",
"lint": "eslint --ext .js,.ts,.tsx pages lib components scripts",
"start": "next",
"test": "NODE_ENV=production babel-node test/index.js"
}
}