-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "devops-bootcamp",
"version": "1.0.0",
"description": "Liatrio DevOps Bootcamp",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "npm run build:dev && npm run serve:docsify",
"serve:docsify": "docsify serve --port 3000",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"lint": "markdownlint-cli2 docs/**/*.md",
"prepare": "husky install",
"compare-front-matter": "node ./.husky/front-matter-condenser",
"refresh-front-matter": "node ./.husky/front-matter-condenser update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liatrio/devops-bootcamp.git"
},
"keywords": [
"devops",
"bootcamp"
],
"author": "Liatrio",
"license": "MIT",
"bugs": {
"url": "https://github.com/liatrio/devops-bootcamp/issues"
},
"homepage": "https://github.com/liatrio/devops-bootcamp#readme",
"dependencies": {
"chart.js": "^4.3.0",
"chartjs-chart-wordcloud": "^4.2.0",
"docsify": "^4.11.4",
"docsify-cli": "^4.4.2",
"docsify-sidebar-collapse": "^1.3.5",
"gray-matter": "^4.0.3",
"node-stdlib-browser": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-loader": "^9.1.2",
"cspell": "^8.0.0",
"husky": "^9.0.11",
"markdownlint-cli2": "^0.14.0",
"remark": "^15.0.0",
"remark-cli": "^12.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.2",
"webpack-merge": "^6.0.0"
}
}