forked from medaymenTN/ts-express-jwt-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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": "docker-node-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -L src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts",
"start": "ts-node dist/index.js",
"build": "tsc -p ."
},
"author": "Mohamed Aymen Ourabi",
"license": "ISC",
"dependencies": {
"@types/bcrypt-nodejs": "0.0.31",
"@types/cors": "^2.8.6",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.1.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^13.5.1",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}