-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "nimble-discord-bot",
"version": "1.2.1",
"author": "Can Çevik <[email protected]>",
"license": "MIT",
"engines": {
"node": "16.x"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@discord-nestjs/common": "^5.2.5",
"@discord-nestjs/core": "^5.3.7",
"@discordjs/voice": "^0.16.1",
"@logtail/node": "^0.4.0",
"@logtail/winston": "^0.4.1",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/mongoose": "^10.0.0",
"axios": "^1.4.0",
"class-transformer": "^0.5.1",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"mongoose": "^7.3.1",
"nest-winston": "^1.9.3",
"nestjs-envalid": "^1.0.0",
"play-dl": "^1.9.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"tweetnacl": "^1.0.3",
"winston": "^3.9.0"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^5.4.2"
}
}