-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 999 Bytes
/
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
{
"name": "capybara_test_helpers",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"docs": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:search": "docker run -it --env-file=docs/.algolia/.env -e \"CONFIG=$(cat docs/.algolia/config.json | jq -r tostring)\" algolia/docsearch-scraper",
"tsc": "vue-tsc --noEmit --project docs/.vitepress",
"lint": "eslint --ignore-pattern '!docs/.vitepress' docs/.vitepress --ext .js,.vue --format node_modules/eslint-formatter-friendly"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"@vue/eslint-config-standard": "^5",
"eslint": "^7",
"eslint-config-vuepress": "^3",
"eslint-formatter-friendly": "^7",
"eslint-plugin-standard": "^4",
"eslint-plugin-vue": "^7",
"typescript": "^4",
"vitepress": "^1.0.0-draft.5",
"vue": "^3",
"vue-tsc": "^0.35.0"
}
}