-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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": "alienworldsbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"serve": "node dist/index.js",
"serve:watch": "nodemon dist/index.js",
"start": "npx cross-env NODE_ENV=development concurrently \"npm run build:watch\" \"npm run serve:watch\"",
"mine": "node ./dist/index.js"
},
"author": "voodee",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"concurrently": "^6.2.1",
"esbuild": "^0.12.25",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
},
"dependencies": {
"ghost-cursor": "^1.1.6",
"puppeteer": "^10.2.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-recaptcha": "^3.4.0",
"puppeteer-extra-plugin-stealth": "^2.7.8"
}
}