1
0

🏷️ Added ts-node and some @types

This commit is contained in:
2021-06-16 16:21:36 +02:00
parent 5a533d4d23
commit a983ebf020
3 changed files with 204 additions and 6 deletions

View File

@@ -1,25 +1,32 @@
{
"name": "twitch-redemption-test",
"version": "1.0.0",
"main": "index.js",
"main": "index.ts",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node -r dotenv/config index.js",
"dev": "nodemon -r dotenv/config index.js -- --dev"
"start": "cross-env NODE_ENV=production ts-node -r dotenv/config index.ts",
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config index.ts"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.5",
"ts-node": "^10.0.0",
"twitch": "^4.2.6",
"twitch-auth": "^4.2.6",
"twitch-chat-client": "^4.2.6",
"twitch-pubsub-client": "^4.2.6",
"typescript": "^4.3.2",
"ws": "^7.3.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.2",
"@types/ws": "^7.4.4"
}
}