-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
32 lines (32 loc) · 1004 Bytes
/
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
{
"name": "consoledot-e2e",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'tests/**/*.ts' 'lib/**/*.ts' --write",
"prettier-check": "prettier --config .prettierrc 'tests/**/*.ts' 'lib/**/*.ts' --check",
"eslint-check": "npx eslint . --max-warnings=0",
"check": "npm run prettier-check && npm run eslint-check",
"test": "npx playwright test",
"test-chrome": "npx playwright test --project chromium",
"test-firefox": "npx playwright test --project firefox"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.32.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-plugin-playwright": "^0.11.2",
"kafkajs": "^2.2.3",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"uuid": "^9.0.0"
}
}