forked from okta/okta-developer-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.21 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
{
"private": true,
"workspaces": [
"packages/@okta/*"
],
"scripts": {
"dev": "yarn workspace @okta/vuepress-site dev",
"build": "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"
},
"repository": "git@github.com:okta/okta.github.io",
"author": "Brian Retterer <brian.retterer@okta.com>",
"license": "Apache-2.0",
"devDependencies": {
"axios": "^0.21.2",
"chai": "^4.2.0",
"chai-as-promised": "*",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"cypress": "^7.6.0",
"if-env": "^1.0.4",
"jest": "^24.9.0",
"mocha": "^9.1.0",
"recursive-readdir": "^2.2.2",
"remove": "^0.1.5",
"wait-on": "^3.2.0",
"wait-until": "^0.0.2"
},
"dependencies": {
"broken-link-checker": "^0.7.8",
"hoek": "^6.1.3",
"joi": "^14.3.1",
"serve": "^11.0.0",
"vuepress": "1.2.0",
"wait-for-localhost-cli": "^3.0.0"
},
"resolutions": {
"http-server/ecstatic": "^4.0.0"
}
}