-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "review-sytem",
"version": "1.0.0",
"description": "company-reviews-system",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage"
},
"dependencies": {
"@nestjs/common": "^7.0.5",
"@nestjs/core": "^7.0.5",
"@nestjs/microservices": "^7.0.5",
"@nestjs/platform-express": "^7.0.5",
"@nestjs/swagger": "^4.4.0",
"@nestjs/testing": "^7.0.5",
"@nestjs/typeorm": "^7.0.0",
"@nestjs/websockets": "^7.0.5",
"argon2": "^0.26.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.1",
"crypto": "^1.0.1",
"crypto-js": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"slug": "^1.1.0",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.24",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"atob": ">=2.1.0",
"deep-extend": ">=0.5.1",
"extend": ">=3.0.2",
"jest": "^25.5.3",
"nodemon": "^1.19.4",
"supertest": "^3.4.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1"
}
}