forked from ruang-guru/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 779 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 779 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
{
"name": "playground",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ruang-guru/playground.git",
"author": "",
"license": "MIT",
"scripts": {
"postinstall": "playwright install firefox",
"test": "jest",
"test:cypress": "cypress run",
"test:playwright": "playwright test",
"fix:playwright": "playwright install chromium && rm playwright.config.js && cp playwright.config.chromium.js playwright.config.js",
"fix:playwright-windows": "playwright install chromium && del playwright.config.js && copy playwright.config.chromium.js playwright.config.js"
},
"devDependencies": {
"@playwright/test": "^1.20.2",
"cypress": "^6.9.1",
"jest": "^27.5.1"
},
"dependencies": {
"axios": "^0.27.1"
}
}