-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "asena",
"version": "3.2.0",
"description": "Fast and reliable giveaway and poll bot for Discord",
"homepage": "https://asena.xyz",
"main": "./src/index.ts",
"types": "./typings/index.d.ts",
"license": "MIT",
"author": {
"name": "Anıl Mısırlıoğlu",
"email": "[email protected]"
},
"exports": {
".": [
{
"required": "./build/src/index.js"
},
"./build/src/index.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/anilmisirlioglu/Asena.git"
},
"scripts": {
"build": "tsc",
"start:dev": "nodemon src/index.ts --",
"start": "NODE_ENV=production node build/src/index.js --",
"publish:dev": "node build/cmd/index.js",
"publish": "NODE_ENV=production node build/cmd/index.js",
"test": "mocha -r ts-node/register tests/unit/*.test.ts"
},
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@discordjs/rest": "^1.1.0",
"@google-cloud/logging-winston": "^4.1.2",
"amqplib": "^0.8.0",
"child_process": "^1.0.2",
"discord-api-types": "^0.37.10",
"discord.js": "^14.3.0",
"dotenv": "^8.2.0",
"mongoose": "^5.10.11",
"node-cron": "^2.0.3",
"prom-client": "^14.0.1",
"saslprep": "^1.0.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.15",
"@types/mocha": "^9.1.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^18.7.1",
"mocha": "^9.2.1",
"nodemon": "^2.0.20",
"ts-node": "^8.10.2",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16.9.0"
}
}