-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.34 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
{
"name": "openboxes-e2e",
"version": "1.0.0",
"description": "End to end testing for OpenBoxes",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "npx prettier --write .",
"test": "npx playwright test",
"report": "npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openboxes/openboxes-e2e.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/openboxes/openboxes-e2e/issues"
},
"homepage": "https://github.com/openboxes/openboxes-e2e#readme",
"devDependencies": {
"@playwright/test": "~1.34.0",
"@types/lodash": "~4.17.0",
"@types/node": "~20.11.30",
"@typescript-eslint/eslint-plugin": "~5.62.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-standard-with-typescript": "~37.0.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-n": "~15.0.0",
"eslint-plugin-playwright": "~1.0.1",
"eslint-plugin-promise": "~6.0.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"prettier": "~3.2.5",
"typescript": "~5.1.6"
},
"dependencies": {
"dayjs": "~1.11.11",
"dotenv": "~16.4.5",
"env-var": "~7.4.1",
"lodash": "~4.17.21",
"short-unique-id": "~5.2.0",
"xlsx": "~0.18.5"
}
}