forked from carince/bloxflip-autogambler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 990 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
37
{
"name": "bloxflip-autocrash",
"version": "1.1.2",
"description": "Bloxflip crash automation using the martingale strategy.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "nodemon src/index.ts -e ts",
"start": "ts-node src/index.ts",
"lint": "eslint src --fix",
"build": "tsc",
"dev:js": "nodemon dist/index.js -e js",
"start:js": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.3.1",
"@types/node-notifier": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@types/inquirer": "^9.0.2",
"@types/node": "^18.8.4",
"chalk": "^4.1.2",
"inquirer": "^9.1.3",
"json5": "^2.2.1",
"node-notifier": "^10.0.1",
"puppeteer": "^17.1.3",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1"
}
}