-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "playwright-test-ts-demo",
"version": "1.0.0",
"description": "Playwright Test Runner in TypeScript",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"lint": "npx eslint . --fix",
"debug": "npx playwright test --headed --timeout=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alisterscott/playwright-test-ts-demo.git"
},
"pre-commit": [
"lint"
],
"author": "",
"license": "ISC",
"ts-standard": {
"project": "./tsconfig.json"
},
"bugs": {
"url": "https://github.com/alisterscott/playwright-test-ts-demo/issues"
},
"homepage": "https://github.com/alisterscott/playwright-test-ts-demo#readme",
"devDependencies": {
"@playwright/test": "^1.36.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"config": "^3.3.6",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"pre-commit": "^1.2.2",
"typescript": "^4.4.4",
"winston": "^3.10.0"
}
}