-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "playwright-intro",
"version": "1.0.0",
"description": "Examples of how to use playwright, and playwright with Jest",
"main": "index.js",
"scripts": {
"test:jest-bouvet": "jest bouvet",
"test:jest-layout": "jest layout",
"test:jest-lighthouse": "jest lighthouse",
"test:jest-playwright": "CONFIG=playwright jest bouvet",
"test:jest-playwright-lighthouse": "CONFIG=playwright-lighthouse jest lighthouse",
"test:playwright-test": "npx folio --config=playwright-test-runner.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oscarcarlstrom/playwright-intro.git"
},
"author": "Oscar Carlström, Jonas Dahlen Svendsen",
"license": "ISC",
"bugs": {
"url": "https://github.com/oscarcarlstrom/playwright-intro/issues"
},
"homepage": "https://github.com/oscarcarlstrom/playwright-intro#readme",
"engines": {
"node": "^14.15.0"
},
"dependencies": {},
"devDependencies": {
"@playwright/test": "^0.1101.0",
"@types/jest": "^26.0.22",
"@types/pixelmatch": "^5.2.3",
"@types/pngjs": "^6.0.0",
"jest": "^26.6.3",
"jest-playwright-preset": "^1.5.1",
"pixelmatch": "^5.2.1",
"playwright": "^1.10.0",
"playwright-lighthouse": "^2.0.0",
"pngjs": "^6.0.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}