-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 988 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
36
{
"name": "playwright-kudos-giver",
"version": "0.1.4",
"description": "Automate Strava Kudos",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"give-kudos": "npx playwright test GiveKudos.exec.ts",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"record": "npx playwright codegen",
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "https://github.com/twoody"
},
"author": "Tanner Woody",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.33.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"pg": "^8.8.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0"
}
}