-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.57 KB
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
{
"name": "e2e-tests",
"version": "1.10.0",
"private": true,
"type": "module",
"engines": {
"node": "22"
},
"scripts": {
"showcase": "playwright test --project=showcase",
"showcase-rbac": "playwright test --project=showcase-rbac",
"showcase-k8s": "playwright test --project=showcase-k8s",
"showcase-rbac-k8s": "playwright test --project=showcase-rbac-k8s",
"showcase-operator": "playwright test --project=showcase-operator",
"showcase-operator-rbac": "playwright test --project=showcase-operator-rbac",
"showcase-runtime": "playwright test --project=showcase-runtime",
"showcase-upgrade": "playwright test --project=showcase-upgrade",
"showcase-auth-providers": "playwright test --project=showcase-auth-providers",
"showcase-sanity-plugins": "playwright test --project=showcase-sanity-plugins",
"showcase-localization-fr": "LOCALE=fr playwright test --project=showcase-localization-fr",
"showcase-localization-it": "LOCALE=it playwright test --project=showcase-localization-it",
"showcase-localization-ja": "LOCALE=ja playwright test --project=showcase-localization-ja",
"lint:check": "eslint . --ext .js,.ts",
"lint:fix": "eslint . \"playwright/**/*.{ts,js}\" --fix",
"postinstall": "playwright install chromium",
"tsc": "tsc",
"tsc:check": "tsc -p tsconfig.json",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"devDependencies": {
"@axe-core/playwright": "4.11.1",
"@eslint/js": "9.39.3",
"@microsoft/microsoft-graph-types": "2.43.1",
"@playwright/test": "1.58.2",
"@types/node": "22.19.11",
"@types/pg": "8.16.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"eslint": "9.39.3",
"eslint-plugin-check-file": "3.3.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-playwright": "2.7.1",
"ioredis": "5.9.3",
"otplib": "12.0.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1"
},
"dependencies": {
"@azure/arm-network": "34.2.0",
"@azure/identity": "4.13.0",
"@keycloak/keycloak-admin-client": "25.0.6",
"@kubernetes/client-node": "0.22.3",
"@microsoft/microsoft-graph-client": "3.0.7",
"isomorphic-fetch": "3.0.0",
"js-yaml": "4.1.1",
"node-fetch": "2.7.0",
"octokit": "4.1.4",
"pg": "8.20.0",
"prettier-plugin-sh": "0.18.0",
"uuid": "11.1.0",
"winston": "3.14.2",
"yaml": "2.8.2"
},
"jest": {
"testTimeout": 20000
},
"packageManager": "yarn@4.12.0"
}