forked from okta/okta-developer-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"workspaces": [
"packages/@okta/*"
],
"scripts": {
"dev": "yarn workspace @okta/vuepress-site dev",
"build": "yarn lint-all && yarn workspace @okta/vuepress-site build",
"broken-link-checker:all": "node scripts/broken-link-checker all",
"broken-link-checker:internal": "node scripts/broken-link-checker internal",
"broken-link-checker:external": "node scripts/broken-link-checker external",
"check-links": "yarn build && yarn broken-link-checker:internal",
"check-links:all": "yarn build && yarn broken-link-checker:all",
"check-links:external": "yarn build && yarn broken-link-checker:external",
"migrate": "yarn workspace @okta/migrate-from-jekyll migrate",
"test": "yarn dev & yarn test:test-local && yarn stop-all",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:unit": "jest tests/unit",
"test-only": "yarn test:unit && yarn cy:run",
"test:test-local": "yarn test:wait-on-local && yarn test-only || exit 1",
"test:wait-on-local": "wait-for-localhost 8080 --use-get",
"markdown-lint": "node scripts/markdown-check",
"stop-all": "if-env CI=true && exit 0 || pkill -f 'yarn' || echo 'done'",
"update-docs": "yarn update-event-types && yarn update-error-codes && yarn update-oauth2-error-codes",
"update-event-types": "bash scripts/update-event-types.sh",
"update-error-codes": "bash scripts/update-error-codes.sh",
"update-oauth2-error-codes": "bash scripts/update-oauth2-error-codes.sh",
"stylelint": "yarn stylelint:scss && yarn stylelint:vue",
"stylelint:scss": "stylelint \"packages/@okta/vuepress-theme-prose/**/*.scss\"",
"stylelint:vue": "stylelint \"packages/@okta/vuepress-theme-prose/**/*.vue\"",
"eslint": "eslint \"packages/@okta/vuepress-theme-prose/**/*.vue\"",
"lint-all": "yarn eslint && yarn stylelint"
},
"repository": "[email protected]:okta/okta.github.io",
"author": "Brian Retterer <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.4.0",
"axios": "^0.26.1",
"chai": "^4.3.7",
"chai-as-promised": "*",
"chalk": "^4.1.2",
"cypress": "^9.7.0",
"if-env": "^1.0.4",
"jest": "^27.5.1",
"mocha": "^9.2.2",
"postcss": "^8.4.21",
"postcss-scss": "^4.0.6",
"recursive-readdir": "^2.2.3",
"remove": "^0.1.5",
"stylelint": "^14.16.1",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"eslint": "^8.33.0",
"eslint-plugin-vue": "^9.9.0"
},
"dependencies": {
"broken-link-checker": "^0.7.8",
"serve-handler": "^6.1.5",
"vuepress": "1.9.8",
"vuepress-plugin-chunkload-redirect": "^1.0.3",
"wait-for-localhost-cli": "^3.0.0"
},
"resolutions": {
"cypress/**/async": "3.2.4",
"cypress/**/qs": "6.11.0",
"vuepress/**/css-what": "^6.1.0",
"vuepress/**/glob-parent": "^6.0.2",
"vuepress/**/got": "11.8.5",
"vuepress/**/ini": "^1.3.7",
"vuepress/**/json-schema": "^0.4.0",
"json5": "2.2.2",
"vuepress/**/node-forge": "^1.3.1",
"vuepress/**/normalize-url": "^6.0.1",
"vuepress/**/nth-check": "^2.1.1",
"vuepress/**/unset-value": "^2.0.1",
"vuepress/**/loader-utils": "^2.0.1",
"vuepress/**/uglify-js": "^3.14.3",
"vuepress/**/markdown-it": "^12.3.2",
"vuepress/**/highlight.js": "^10.4.1",
"string-replace-loader/loader-utils": "1.4.2",
"**/chalk/**/ansi-regex": "^3.0.1",
"robots-txt-guard":"1.0.0",
"tough-cookie":"^4.1.3",
"semver":"^7.5.2"
}
}