-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
80 lines (80 loc) · 2.36 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
{
"name": "mesosphere-docs",
"version": "0.0.1",
"description": "Mesosphere docs",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=metalsmith-timer,metalsmith-algolia,metalsmith-layouts,metalsmith-assets node index.js",
"build": "cross-env NODE_ENV=production DEBUG=metalsmith-timer,metalsmith-algolia node index.js",
"webpack": "webpack --progress --colors",
"prepare": "husky install",
"postinstall": "patch-package"
},
"author": "D2iQ",
"devDependencies": {
"algoliasearch": "^4.0.0",
"autoprefixer": "^7.1.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^7.0.3",
"css-loader": "^0.28.4",
"debug": "^3.1.0",
"eslint": "^8.3.0",
"extract-text-webpack-plugin": "^2.1.2",
"husky": "7.0.4",
"js-yaml": "^3.9.1",
"lint-staged": "^12.1.2",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^4.0.0",
"markdown-it-attrs": "^1.2.1",
"markdownlint-cli": "0.30.0",
"metalsmith": "2.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-data-loader": "^1.1.2",
"metalsmith-ignore": "^0.1.2",
"metalsmith-layouts": "^1.8.1",
"metalsmith-markdownit": "^0.4.0",
"metalsmith-serve": "0.0.7",
"metalsmith-timer": "0.0.2",
"metalsmith-watch": "^1.0.3",
"mkdirp": "^0.5.1",
"ngindox": "^0.2.0",
"patch-package": "6.4.7",
"postcss-loader": "^2.0.6",
"pug": "^3.0.1",
"remark-cli": "10.0.1",
"remark-lint-no-dead-urls": "1.1.0",
"remark-validate-links": "11.0.2",
"sanitize-html": "^1.14.1",
"sass-loader": "^6.0.6",
"semver": "^7.3.2",
"semver-sort": "0.0.4",
"shortcode-parser": "0.0.1",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"eslint-config-airbnb": "^19.0.2",
"html-entities": "^2.1.0",
"mustache": "^4.1.0",
"node-sass": "npm:sass@^1.49.9",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"engines": {
"node": "^16.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.md": [
"vale --config=./.vale.ini",
"remark --quiet --frail --no-stdout",
"markdownlint --ignore node_modules"
]
}
}