forked from diplodoc-platform/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.97 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@doc-tools/docs",
"author": "Yandex Data UI Team <[email protected]>",
"description": "Make documentation using yfm-docs in Markdown and HTML formats",
"license": "MIT",
"version": "1.18.11",
"repository": {
"type": "git",
"url": "[email protected]:yandex-cloud/yfm-docs.git"
},
"bin": {
"yfm": "build/index.js"
},
"main": "build/index.js",
"files": [
"build",
"src"
],
"scripts": {
"build": "webpack",
"start": "node build/index.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@doc-tools/components": "^1.11.1",
"@doc-tools/transform": "^2.4.8",
"@octokit/core": "^3.5.1",
"aws-sdk": "^2.1054.0",
"chalk": "^4.0.0",
"highlight.js": "^10.4.0",
"js-yaml": "^4.1.0",
"mime-types": "^2.1.34",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"shelljs": "^0.8.5",
"simple-git": "^2.48.0",
"walk-sync": "^2.1.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@types/chalk": "^2.2.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/markdown-it": "^10.0.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^12.12.31",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/shelljs": "^0.8.10",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"bem-cn-lite": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"lint-staged": "^10.1.7",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.0",
"prop-types": "^15.8.1",
"react-svg-loader": "^3.0.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-jest": "^27.1.2",
"typescript": "^3.9.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"pkg": {
"scripts": [
"build/index.js",
"build/plugins/*.js",
"build/lint-rules/*.js",
"build/default-lint-config.js",
"build/head-content.js"
],
"assets": "build/app.js"
},
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
]
}