-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
42
43
44
{
"name": "bing-rewards-bot",
"version": "3.0.0",
"description": "A Microsoft bing bot that collects daily points, including a dashboard and login with a beautifull UI.",
"main": "bot/bot.js",
"scripts": {
"test": "node bot/test.js",
"build": "npm install && npm run build-css",
"bot": "node bot/bot.js",
"start": "npm run build-css && node server/index.js",
"build-css": "npx tailwindcss -i ./server/template.css -o ./public/output.css --minify"
},
"keywords": [
"bot",
"javascript",
"node",
"express"
],
"author": "Arthur",
"license": "ISC",
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/blob": "^0.25.1",
"@vercel/postgres": "^0.10.0",
"axios": "^1.7.7",
"cookie-parser": "^1.4.7",
"copy-to-clipboard": "^3.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"hbs": "^4.2.0",
"multer": "^1.4.5-lts.1",
"nocache": "^4.0.0",
"prompt-sync": "^4.2.0",
"puppeteer": "^19.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"random-words": "^2.0.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"tailwindcss": "^3.4.15"
}
}