-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "nest-starter",
"version": "1.0.0",
"description": "NodeJs application with NestJs and MySql",
"main": "App.ts",
"scripts": {
"build": "tsc",
"start": "node dist/App.js"
},
"keywords": [
"NestJs",
"Typescript",
"MySql"
],
"author": "Haiducu Andrei",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^5.7.3",
"@nestjs/core": "^5.6.2",
"@nestjs/jwt": "^0.2.1",
"@nestjs/passport": "^5.1.0",
"@nestjs/swagger": "^2.5.1",
"@nestjs/typeorm": "^5.3.0",
"bcryptjs": "^2.4.3",
"dotenv": "^6.2.0",
"joi": "^14.3.1",
"mysql": "^2.16.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.4.0",
"typeorm": "^0.2.14"
},
"devDependencies": {
"@types/lodash": "^4.14.120",
"@types/node": "6.0.90",
"@types/passport-jwt": "^3.0.1",
"ts-node": "3.2.2",
"tslint": "5.7.0",
"tslint-language-service": "^0.9.9",
"typescript": "3.1.3",
"@types/dotenv": "^6.1.0",
"@types/joi": "^14.3.2"
}
}