-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 867 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 867 Bytes
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
{
"name": "mercadix",
"version": "1.0.0",
"description": "  ",
"main": "sw.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@testing-library/react": "^14.0.0",
"jest": "^29.5.0",
"playwright": "^1.35.0"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/tests/frontend/**/*.test.js"
]
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"jest-environment-jsdom": "^29.7.0"
}
}