-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "markdown-documentation-maker",
"version": "1.0.24",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"docs:website": "http-server ./docs",
"docs:build": "node src/docs/generator/index.js",
"docs:watch": "nodemon src/docs/generator/index.js",
"docs:install": "node run/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mzusin/markdown-documentation-maker.git"
},
"keywords": [
"documentation",
"markdown documentation",
"documentation generator",
"docs"
],
"author": "Miriam Zusin <miriam.zusin@gmail.com>",
"license": "MIT",
"dependencies": {
"app-root-path": "^3.1.0",
"autoprefixer": "^10.4.12",
"cssnano": "^5.1.13",
"esbuild": "^0.15.10",
"fs-extra": "^10.1.0",
"highlight.js": "^11.7.0",
"http-server": "^14.1.1",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"watch": [
"src/"
],
"ext": "js,json,html,css,md,ts,tsx,glsl"
}
}