-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "tipbot",
"version": "1.0.0",
"description": "A tipbot for Bunkercoin",
"main": "build/src/index.js",
"type": "module",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "nodemon -w src -e ts -x \"npm run build; npm start\"",
"lint": "prettier -w src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunkercoin/bunkertip.git"
},
"keywords": [
"bunkercoin",
"bkc",
"tipbot",
"tipping",
"money",
"crypto"
],
"author": "Bram (sys-256)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bunkercoin/bunkertip/issues"
},
"homepage": "https://github.com/bunkercoin/bunkertip#readme",
"dependencies": {
"@prisma/client": "^4.5.0",
"discord.js": "^13.6.0"
},
"devDependencies": {
"@types/node": "^18.11.4",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"prisma": "^4.5.0"
}
}