forked from kenyasue/md-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "md-documentation",
"version": "1.0.0",
"description": "Generate html from markdown fiels.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": " npx tsc -p tsconfig.json && node build/index.js",
"webhook:github": "npx tsc -p tsconfig.json && node build/webhook/github.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenyasue/md-documentation.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenyasue/md-documentation/issues"
},
"homepage": "https://github.com/kenyasue/md-documentation#readme",
"dependencies": {
"ascii-text-generator": "^1.0.5",
"css-loader": "^2.1.0",
"dotenv": "^16.0.1",
"highlight.js": "^11.5.1",
"html-format": "^1.0.1",
"html-prettify": "^1.0.6",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-html5-embed": "^1.0.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sup": "^1.0.0",
"markdown-it-video": "^0.6.3",
"node-sass": "^7.0.1",
"pretty": "^2.0.0",
"style-loader": "^0.23.1",
"swagger-ui": "^4.11.0",
"typescript": "^4.6.4",
"webpack": "^4.46.0",
"yaml": "^2.0.1",
"yaml-loader": "^0.5.0"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.30",
"@types/node-sass": "^4.11.2",
"@types/pretty": "^2.0.1",
"@types/webpack": "^5.28.0",
"webpack-cli": "^3.2.3"
}
}