-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "automate-api",
"version": "3.3.0",
"description": "The API for the Automate bot",
"author": "Théodore Prévot",
"private": true,
"scripts": {
"build": "nest build",
"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",
"format:imports": "tslint --config tslint.json --fix --project ./src"
},
"dependencies": {
"@nestjs/axios": "^3.0.0",
"@nestjs/cache-manager": "^2.1.0",
"@nestjs/common": "^10.2.5",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.5",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^10.2.5",
"@nestjs/swagger": "^7.1.11",
"@nestjs/typeorm": "^10.0.0",
"axios": "^1.3.1",
"cache-manager": "^5.2.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cronstrue": "^2.32.0",
"discord.js": "^14.13.0",
"express": "^4.18.1",
"fs-extra": "^11.1.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.6.1",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"passport-oauth2-refresh": "^2.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.17",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@types/cache-manager": "^4.0.3",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.42",
"@types/passport-discord": "^0.1.7",
"@types/passport-oauth2": "^1.4.12",
"@types/passport-oauth2-refresh": "^1.1.1",
"@types/uuid": "^9.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"axios": "^1.3.1"
}
}