-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "herogu-back",
"version": "1.0.0",
"description": "",
"author": "GarageISEP",
"private": true,
"license": "Apache License, Version 2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"mysql": "docker-compose -f docker/docker-compose.dev.yml up -d",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "echo 'no tests'"
},
"dependencies": {
"@nestjs/axios": "^0.0.5",
"@nestjs/common": "^8.2.6",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^9.0.5",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/swagger": "^5.2.0",
"@nestjs/typeorm": "8.0.3",
"@nestlab/google-recaptcha": "^2.1.1",
"@octokit/auth-app": "^3.6.0",
"@octokit/webhooks": "^9.14.1",
"class-transformer": "0.4.0",
"class-validator": "^0.14.0",
"dockerode": "^3.3.1",
"eventsource": "^1.1.0",
"form-data": "^4.0.0",
"fs-extra": "^9.1.0",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.3",
"node-sql-parser": "^3.6.9",
"nodemailer": "^6.6.3",
"octokit": "^1.5.0",
"pg": "^8.6.0",
"qs": "^6.7.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"string-template": "^1.0.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "0.2.41"
},
"devDependencies": {
"@nestjs/cli": "^8.2.8",
"@nestjs/schematics": "^7.1.3",
"@types/btoa": "^1.2.3",
"@types/dockerode": "^3.2.7",
"@types/eventsource": "^1.1.8",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^14.14.6",
"@types/nodemailer": "^6.4.4",
"@types/string-template": "^1.0.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-loader": "^8.0.8",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
}
}