-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 985 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
{
"name": "twitch-botifier",
"version": "1.0.0",
"description": "A bot that notifies you when a streamer goes live",
"main": "index.js",
"scripts": {
"build": "npm run clearAndCopy && tsc && echo 🛫 Successfully builded an app!\n",
"start": "node build/index.js",
"buildRun": "npm run build && npm run start",
"clearAndCopy": "rimraf build/server && copyfiles -e src/server/*.ts -u 1 src/server/static/** build/"
},
"author": "richardscull",
"license": "ISC",
"dependencies": {
"@fastify/static": "^6.12.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"express": "^4.21.0",
"express-session": "^1.17.3",
"fastify": "^4.28.1",
"mongoose": "^8.0.3",
"node-telegram-bot-api": "^0.61.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/node-telegram-bot-api": "^0.61.6",
"copyfiles": "^2.4.1"
}
}