-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "virginity-bot",
"version": "0.0.1",
"description": "A Discord Bot to track peoples' time in VC.",
"author": "EdgarSaldivar",
"contributors": [
{
"name": "dudeofawesome",
"email": "[email protected]"
}
],
"private": true,
"license": "AGPL-3.0",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start --exec 'node --require dotenv/config'",
"start:dev": "nest start --watch --exec 'node --require dotenv/config --inspect'",
"start:debug": "nest start --watch --exec 'node --require dotenv/config --inspect-brk'",
"start:debug:docker": "nest start --watch --exec 'node --require dotenv/config --inspect-brk=0.0.0.0'",
"start:prod": "node --require=source-map-support/register dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register --require ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"db:create": "mikro-orm migration:up",
"db:drop": "mikro-orm schema:drop -r"
},
"mikro-orm": {
"useTsNode": true
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"engines": {
"node": "^18.10.0"
},
"dependencies": {
"@discord-nestjs/common": "^5.1.3",
"@discord-nestjs/core": "^5.2.0",
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.14.0",
"@iunu-inc/code-style": "^0.0.12",
"@lab08/nestjs-s3": "^2.1.0",
"@mikro-orm/core": "5.6.7",
"@mikro-orm/migrations": "5.6.7",
"@mikro-orm/nestjs": "^5.1.6",
"@mikro-orm/postgresql": "5.6.7",
"@mikro-orm/reflection": "5.6.7",
"@nestjs/axios": "^1.0.1",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schedule": "^2.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cron": "^2.2.0",
"date-fns": "^2.29.3",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.1.0",
"nestjs-minio-client": "^2.0.0",
"opusscript": "^0.0.8",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"sodium-native": "^4.0.0",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
},
"devDependencies": {
"@iunu-inc/eslint-config-node": "^0.0.11",
"@iunu-inc/eslint-config-typescript": "^0.0.12",
"@mikro-orm/cli": "5.6.7",
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.13",
"@types/jest": "29.2.4",
"@types/minio": "^7.0.15",
"@types/node": "18.11.18",
"@types/pluralize": "^0.0.29",
"@types/supertest": "^2.0.11",
"eslint": "^8.0.1",
"eslint-import-resolver-typescript": "^3.5.3",
"jest": "29.3.1",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.1",
"typescript": "^4.7.4"
}
}