-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
41 lines (41 loc) · 1.7 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
{
"name": "@vuepress/ecosystem-e2e",
"private": true,
"type": "module",
"scripts": {
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:build-webpack": "cross-env E2E_BUNDLER=webpack pnpm docs:build",
"docs:clean": "rimraf docs/.vuepress/.temp docs/.vuepress/.cache docs/.vuepress/dist",
"docs:dev": "vuepress dev docs --clean-cache --clean-temp",
"docs:dev-webpack": "cross-env E2E_BUNDLER=webpack pnpm docs:dev",
"docs:serve": "http-server -p 9080 docs/.vuepress/dist",
"e2e:build": "cross-env E2E_COMMAND=build playwright test",
"e2e:build-webpack": "cross-env E2E_COMMAND=build E2E_BUNDLER=webpack playwright test",
"e2e:dev": "cross-env E2E_COMMAND=dev playwright test",
"e2e:dev-webpack": "cross-env E2E_COMMAND=dev E2E_BUNDLER=webpack playwright test"
},
"dependencies": {
"@vuepress/bundler-vite": "catalog:",
"@vuepress/bundler-webpack": "catalog:",
"@vuepress/plugin-blog": "workspace:*",
"@vuepress/plugin-catalog": "workspace:*",
"@vuepress/plugin-copyright": "workspace:*",
"@vuepress/plugin-feed": "workspace:*",
"@vuepress/plugin-notice": "workspace:*",
"@vuepress/plugin-photo-swipe": "workspace:*",
"@vuepress/plugin-pwa": "workspace:*",
"@vuepress/plugin-redirect": "workspace:*",
"@vuepress/plugin-register-components": "workspace:*",
"@vuepress/plugin-sass-palette": "workspace:*",
"@vuepress/plugin-theme-data": "workspace:*",
"@vuepress/plugin-watermark": "workspace:*",
"@vuepress/theme-default": "workspace:*",
"sass-embedded": "^1.85.0",
"sass-loader": "^16.0.5",
"vue": "^3.5.13",
"vuepress": "catalog:"
},
"devDependencies": {
"@playwright/test": "^1.50.1"
}
}