-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "node-bot-starter",
"version": "1.0.0",
"description": "A jump starter repo for building a Selenium-based web bot using NodeJS/TypeScript",
"main": "dist/index.js",
"scripts": {
"bot": "tsc -P \".\" && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.10.5",
"@types/selenium-webdriver": "^4.1.21",
"axios": "^1.6.3",
"selenium-webdriver": "^4.16.0"
},
"author": "Goeff Thomas <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-typescript": "^0.14.0",
"typescript": "^5.3.3"
}
}