-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
71 lines (71 loc) · 2.46 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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.17.2",
"@playwright/test": "^1.20.1",
"@vuepress/core": "^1.8.3",
"@vuepress/plugin-google-analytics": "^1.8.3",
"autoprefixer": "^9.8.4",
"axe-core": "^4.4.1",
"axe-html-reporter": "^2.2.3",
"axe-playwright": "^1.1.11",
"babel-preset-vue": "^2.0.2",
"commander": "^2.20.3",
"css-loader": "^4.0.0",
"esm": "^3.2.25",
"jest": "^27.5.1",
"markdown-it-deflist": "^2.1.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-include": "^2.0.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.8",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"serve": "^13.0.2",
"tailwindcss": "^1.4.6",
"textlint": "^12.1.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-linkable-params": "github:craftcms/textlint-rule-linkable-params",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-terminology": "^2.1.5",
"v-tooltip": "^2.1.3",
"vue-fragment": "^1.5.2",
"vue-loader": "^15.7.1",
"vue-server-renderer": "^2.6.12",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.8.3",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-medium-zoom": "^1.1.9",
"vuepress-plugin-sitemap": "docs/.vuepress/theme/vuepress-plugin-sitemap",
"vuex": "^3.6.2",
"webpack": "^4.46.0"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:devdebug": "node --nolazy --inspect-brk=9229 ./node_modules/.bin/vuepress dev docs",
"docs:devnocache": "vuepress dev docs --no-cache",
"docs:build": "vuepress build docs --dest=docs/.vuepress/dist/docs && npm run docs:sitemap && npm run docs:redirects",
"docs:sitemap": "vuepress-sitemap -H https://craftcms.com/docs/ -d docs/.vuepress/dist/docs",
"docs:redirects": "cp ./_redirects ./docs/.vuepress/dist/",
"serve-static": "./node_modules/.bin/serve -l 3030 ./docs/.vuepress/dist/",
"textlint": "./node_modules/.bin/textlint 'docs/**'",
"textlint:fix": "./node_modules/.bin/textlint 'docs/**' --fix",
"test:playwright": "npx playwright test",
"test:jest": "node ./node_modules/.bin/jest"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"flexsearch": "^0.6.32",
"html-to-text": "^7.1.1",
"marked": "^4.0.17",
"vue-autosuggest": "^2.2.0"
},
"jest": {
"testMatch": [
"**/*.test.js"
]
}
}