-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 977 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
{
"name": "hidroponiqa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint tests",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier tests --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run lint:fix && npm run prettier:fix",
"update-snapshots": "playwright test --update-snapshots",
"start": "playwright test --ui",
"report": "playwright test --reporter=html",
"test": "playwright test --reporter=dot"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/node": "^20.6.3"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-plugin-prettier": "^5.0.0"
}
}