-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.1 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
41
{
"name": "bloxflip-autogambler",
"version": "3.0.0",
"description": "Bloxflip gambling automation using the martingale strategy.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node build.mjs --run",
"lint": "eslint src --fix",
"build": "node build.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.1.1",
"@rollup/plugin-typescript": "^11.1.5",
"@swc/core": "^1.3.101",
"@types/express": "^4.17.21",
"@types/node-notifier": "^8.0.5",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"rollup": "^3.29.4",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.6.3",
"chalk": "^4.1.2",
"chart.js": "^4.4.1",
"express": "^4.18.2",
"json5": "^2.2.3",
"node-notifier": "^10.0.1",
"open": "^9.1.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}