forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "prefect",
"description": "The Prefect Docs",
"version": "0.5.0",
"license": "Apache-2.0",
"dependencies": {
"glob": "^7.1.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.13",
"lodash.template": "^4.5.0",
"markdown-it-attrs": "^2.4.1",
"markdown-it-checkbox": "^1.1.0",
"netlify-identity-widget": "^1.5.5",
"vuepress": "^1.0.4",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-selected-text-popup": "^1.0.0"
},
"scripts": {
"docs:generate-api": "cd docs && python generate_docs.py",
"docs:dev": "yarn docs:generate-api && vuepress dev docs",
"docs:build": "yarn docs:generate-api && vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrefectHQ/prefect.git"
},
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.0.1",
"vuepress-plugin-element-tabs": "^0.1.8"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}