forked from spotinst/help
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "help",
"description": "Spot Docs",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/spotinst/help"
},
"license": "Apache-2.0",
"author": {
"name": "Spot by NetApp",
"url": "https://spot.io"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack -w",
"start": "concurrently --kill-others-on-fail \"npm:build:watch\" \"npm:serve\"",
"serve": "webpack serve --mode development --env development",
"lint": "eslint --ext .js,.ts,.md,.html ./src",
"format": "prettier --write 'src/{**/,}*.{html,json,js,pcss,md,yaml}'",
"sitemap": "src/scripts/sitemap.js",
"prepare": "husky install"
},
"dependencies": {
"docsify-cli": "^4.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.5",
"clean-webpack-plugin": "4.0.0",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.1.2",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.32.2",
"postcss": "^8.4.17",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.2",
"postcss-mixins": "^9.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"sitemap": "^7.1.1",
"style-loader": "^3.3.1",
"typescript": "^4.6.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.11.1",
"xml-formatter": "^2.6.1",
"yarn": "^1.22.19"
},
"engines": {
"node": ">=12"
}
}