-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.8 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.8 KB
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
{
"name": "amzbot",
"version": "2.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "jest --runInBand",
"test:watch": "jest --watch --coverage --runInBand",
"test:ci": "jest --ci --coverage --runInBand",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint": "npm run lint:ts && npm run lint:format",
"lint:ts": "biome lint --error-on-warnings ./src",
"lint:ts:fix": "biome lint --error-on-warnings --write ./src",
"lint:format": "biome format ./src",
"lint:format:fix": "biome format --write ./src"
},
"dependencies": {
"@discord-nestjs/common": "^5.2.12",
"@discord-nestjs/core": "^5.3.14",
"@nestjs/axios": "^3.1.1",
"@nestjs/cache-manager": "2.3.0",
"@nestjs/common": "^10.4.6",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.6",
"@nestjs/mapped-types": "2.0.5",
"@nestjs/mongoose": "^10.1.0",
"@nestjs/platform-express": "^10.4.6",
"ask-sdk-core": "^2.14.0",
"ask-sdk-express-adapter": "^2.14.0",
"ask-sdk-model": "^1.86.0",
"cache-manager": "5.7.6",
"discord-player": "^7.0.0",
"discord-player-youtubei": "^1.3.7",
"discord.js": "^14.17.3",
"mongoose": "^8.7.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.4",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"lefthook": "^1.8.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"jest": {
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": ["**/*.(t|j)s"],
"coveragePathIgnorePatterns": [".mocks.ts$"],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^@api(.*)$": "<rootDir>/api$1",
"^@bot(.*)$": "<rootDir>/bot$1",
"^@config(.*)$": "<rootDir>/config$1",
"^@shared(.*)$": "<rootDir>/shared$1",
"^@database(.*)$": "<rootDir>/database$1",
"^@services(.*)$": "<rootDir>/services$1"
}
}
}