-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "playwright-framework-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo %NODE_ENV% && npx playwright test --headed --config=playwright.config.ts",
"test:local": "cross-env NODE_ENV='local' npm run test",
"test:dev": "cross-env NODE_ENV='dev' npm run test",
"test:sit": "cross-env NODE_ENV='sit' npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.2.1",
"ortoni-report": "^2.0.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/mocha": "^10.0.6",
"@types/webdriverio": "^5.0.0",
"ajv": "^8.12.0",
"appium": "^2.4.1",
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"moment": "^2.30.1",
"nodejs-nodemailer-outlook": "^1.2.4",
"ts-node": "^10.9.2",
"webdriverio": "^8.28.0",
"winston": "^3.11.0"
}
}