-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "@uniqs/backend",
"version": "3.0.2",
"private": true,
"dependencies": {
"@nestjs/common": "^8.0.0-alpha.7",
"@nestjs/config": "^0.6.3",
"@nestjs/core": "^8.0.0-alpha.7",
"@nestjs/jwt": "^7.2.0",
"@nestjs/platform-express": "^8.0.0-alpha.7",
"@nestjs/platform-socket.io": "^8.0.0-alpha.7",
"@nestjs/schedule": "^0.4.3",
"@nestjs/swagger": "^4.8.0",
"@nestjs/throttler": "^1.1.4",
"@nestjs/typeorm": "^7.1.5",
"@nestjs/websockets": "^8.0.0-alpha.7",
"@uniqs/config": "workspace:*",
"@uniqs/utils": "workspace:*",
"cache-manager": "^3.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"got": "^11.8.2",
"helmet": "^4.6.0",
"joi": "^17.4.0",
"nodemailer": "^6.6.1",
"pg": "^8.6.0",
"rxjs": "^7.1.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@nestjs/cli": "^7.6.0",
"@nestjs/schematics": "^7.3.1",
"@nestjs/testing": "^8.0.0-alpha.7",
"@types/cache-manager": "^3.4.0",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/multer": "^1.4.5",
"@types/node": "^15.12.1",
"@types/nodemailer": "^6.4.2",
"@types/supertest": "^2.0.11",
"jest": "^27.0.4",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3"
},
"scripts": {
"test": "jest -i",
"prebuild": "rm -rf build",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node build/main.js",
"migrate": "NODE_ENV=migration MIGRATION_BACKUP_PATH=./backup nest start"
}
}