-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSnykTest.json
34 lines (34 loc) · 1020 Bytes
/
SnykTest.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
{
"name": "snyk-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npm run lint:ts && npm run typecheck && echo 'Lint OK'",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"report": "playwright show-report",
"generate-types": "openapi-typescript ../docs/spec/openapi.yml --output ./generated/types.ts",
"test:api-pxc": "playwright test --config=playwright.config.ts -g '@pxc'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"openapi-typescript": "^7.6.1"
},
"dependencies": {
"@playwright/test": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-playwright": "^2.2.0",
"shelljs": "^0.9.2"
}
}