-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.33 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
{
"name": "pmm-ui-tests",
"version": "1.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/percona/pmm-ui-tests.git"
},
"scripts": {
"gen:types": "npx codeceptjs def --config=pr.codecept.js",
"lint:tests": "eslint --ext .js --fix tests/",
"e2e": "npx codeceptjs run-multiple parallel --debug --steps --reporter mocha-multi -c pr.codecept.js --grep '(?=.*)^(?!.*@not-ui-pipeline)^(?!.*@not-pr-pipeline)'",
"e2e:ia": "npx codeceptjs run -c pr.codecept.js --grep '@ia'",
"e2e:stt": "npx codeceptjs run -c pr.codecept.js --grep '@stt'",
"e2e:dbaas": "npx codeceptjs run -c pr.codecept.js --grep '@dbaas'",
"e2e:grafana-pr": "npx codeceptjs run -c pr.codecept.js --grep '@grafana-pr'",
"prepare": "husky install",
"pre-commit": "npm run lint:tests && echo 'Lint OK'"
},
"dependencies": {
"@faker-js/faker": "^5.5.3",
"@pagerduty/pdjs": "^2.2.4",
"@types/lodash": "^4.14.168",
"@types/luxon": "^3.3.0",
"@types/mocha": "^8.2.2",
"adm-zip": "^0.5.9",
"axios": "1.2.6",
"build-url": "^6.0.1",
"chai": "^4.3.6",
"codeceptjs": "^3.2.2",
"codeceptjs-chai": "^2.3.2",
"codeceptjs-dbhelper": "^1.2.2",
"codeceptjs-mailosaurhelper": "^1.0.5",
"codeceptjs-postgresqlhelper": "^1.0.0",
"faker": "^5.5.3",
"form-data": "^4.0.0",
"generate-password": "^1.6.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi": "^1.1.6",
"moment": "2.29.4",
"mongodb": "^3.7.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"playwright": "^1.35.1",
"prettier": "^2.2.1",
"request": "^2.88.2",
"shelljs": "^0.8.5",
"tar.gz": "^1.0.7",
"typescript": "^5.1.6",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/faker": "^6.6.9",
"@types/node": "^18.8.3",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.11",
"dotenv": "^16.1.4",
"eslint": "8.41",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-playwright": "^0.12.0",
"husky": "^8.0.0"
}
}