-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "articles-api",
"version": "1.0.0",
"description": "Articles Api",
"main": "index.js",
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch",
"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": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/platform-express": "^6.7.2",
"@nestjs/testing": "^6.7.2",
"@nestjs/typeorm": "^6.2.0",
"@nestjs/websockets": "^6.7.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.10.1",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"slug": "^1.1.0",
"typeorm": "^0.2.19",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0"
}
}