forked from microsoft/storywright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 883 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
32
33
34
35
{
"name": "testrepro",
"description": "Storybook setup.",
"license": "MIT",
"version": "0.0.22",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"chrome": "./lib/playwright-chromium.js"
},
"scripts": {
"build": "tsc",
"start": "tsc -w --preserveWatchOutput",
"chrome": "node ./lib/playwright-chromium.js",
"webkit": "node ./lib/playwright-webkit.js",
"firefox": "node ./lib/playwright-firefox.js",
"pupp-chrome": "node ./lib/pupeteer-chromium.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"types": "lib/index.d.ts",
"dependencies": {
"playwright": "^1.28.0",
"puppeteer": "19.2.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^15.6.1",
"prettier": "^2.3.2",
"typescript": "^4.1.2"
},
"sideEffects": false
}