-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tssc-test",
"version": "1.0.0",
"description": "TSSC Test is a testing framework for TSSC API using Playwright and TypeScript.",
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.json\" \"*.js\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.json\" \"*.js\" \"*.md\"",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format:check",
"generate-config": "npx ts-node scripts/generateProjectConfig.ts",
"test": "npm run generate-config && playwright test",
"test:plan": "npm run generate-config && JUNIT_OUTPUT_FILE=test-results/${TESTPLAN_NAME:-testplan}-e2e.junit playwright test",
"test:e2e": "TESTPLAN_NAME=e2e-tests npm run generate-config && JUNIT_OUTPUT_FILE=test-results/devlake-backend-e2e.junit playwright test",
"test:import": "TESTPLAN_NAME=import-tests npm run generate-config && playwright test",
"test:backend": "TESTPLAN_NAME=e2e-tests,import-tests npm run generate-config && playwright test",
"test:ui": "TESTPLAN_NAME=ui-tests JUNIT_OUTPUT_FILE=test-results/devlake-frontend-e2e.junit playwright test",
"test:ui-interactive": "TESTPLAN_NAME=ui-tests playwright test --ui",
"test:all": "TESTPLAN_NAME=e2e-tests,import-tests npm run generate-config && playwright test && TESTPLAN_NAME=ui-tests playwright test",
"test:report": "playwright show-report"
},
"keywords": [
"typescript",
"playwright",
"testing",
"api",
"e2e"
],
"author": "TSSC Team",
"license": "Apache-2.0",
"dependencies": {
"@gitbeaker/rest": "^43.0.0",
"@janus-idp/shared-react": "^2.18.0",
"@types/async-retry": "^1.4.9",
"async-retry": "^1.3.3",
"p-retry": "^7.0.0",
"sodium-native": "^5.0.6",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"overrides": {
"ansi-regex": "^6.0.1 <=6.2.2",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5"
},
"devDependencies": {
"@backstage/plugin-scaffolder-react": "^1.18.0",
"@kubernetes/client-node": "^1.3.0",
"@octokit/plugin-retry": "^8.0.1",
"@octokit/plugin-throttling": "^11.0.1",
"@octokit/rest": "^22.0.0",
"@playwright/test": "^1.54.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^24.0.14",
"@types/proper-lockfile": "^4.1.4",
"@types/sodium-native": "^2.3.9",
"@types/uuid": "^11.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"axios": "^1.10.0",
"dotenv": "^17.2.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"nock": "^14.0.5",
"otplib": "^13.0.0",
"pino": "^10.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.6.2",
"proper-lockfile": "^4.1.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}