-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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
{
"name": "twitchstreamgroupnotificationbot",
"version": "1.0.0",
"description": "",
"main": "./dist/app.js",
"scripts": {
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc",
"postinstall": "npm run build",
"start": "node dist/app.js",
"watch-node": "nodemon dist/app.js",
"watch-ts": "tsc -w",
"gcp-build": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"discord.js": "^14.2.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.36",
"typescript": "^4.6.3"
},
"engines": {
"node": "16.13.1"
}
}