-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 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": "discord-bot-github",
"version": "1.0.0",
"scripts": {
"dev": "npx ts-node src/index.ts",
"build": "npx parcel build src/index.ts",
"heroku-postbuild": "yarn build"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@hapi/cryptiles": "^5.1.0",
"@hapi/hapi": "^20.1.5",
"crypto-js": "^4.1.1",
"discord.js": "^13.1.0",
"mongodb": "^4.1.1"
},
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/hapi__cryptiles": "^5.0.1",
"@types/hapi__hapi": "^20.0.9",
"parcel": "^2.0.0-rc.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"targets": {
"default": {
"context": "node"
}
},
"engines": {
"node": "16.x"
}
}