forked from vuestorefront/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 1.2 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
{
"name": "vsf-magento-integration-docs",
"version": "1.0.0-beta.0",
"description": "Documentation for the Magento integration for Vue Storefront",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/vuestorefront/magento2",
"scripts": {
"dev": "vuepress dev",
"build": "vuepress build --max-concurrency=32",
"api-extract": "cd ../ && yarn build && cd docs/ && yarn api-ref && yarn ref-md",
"api-ref": "cd ../packages/api-client && api-extractor run --local",
"theme-ref": "cd ../scripts && node generateApiReference.mjs",
"ref-md": "api-documenter markdown --i api-reference --o api-reference"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.17.12",
"@microsoft/api-extractor": "^7.23.1",
"@vuepress/plugin-active-header-links": "^1.9.7",
"@vuepress/plugin-back-to-top": "^1.9.7",
"@vuepress/plugin-medium-zoom": "^1.9.7",
"@vuepress/plugin-search": "^1.9.7",
"handlebars": "^4.7.7",
"markdown-it-video": "^0.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vuepress": "^1.9.7"
},
"dependencies": {
"sass-loader": "^8.0.2",
"vue-multiselect": "^2.1.6",
"vuepress-theme-vsf-docs": "^1.0.16"
}
}