-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "session-playwright",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:oxen-io/session-playwright.git",
"author": "Audric Ackermann <[email protected]>",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.196",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.0.0",
"allure-commandline": "^2.23.1",
"allure-playwright": "2.6.0",
"dotenv": "^16.4.5",
"electron": "^25.4.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-more": "^1.0.5",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"prettier": "^3.0.1",
"typescript": "^5.1.6",
"uuid": "^9.0.1"
},
"scripts": {
"lint": "yarn prettier . --write && yarn eslint .",
"test": "npx playwright test",
"watch": "tsc -w",
"allure-create": "allure generate ./allure-results",
"allure-open": "allure open ./allure-report"
},
"dependencies": {}
}