-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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": "dimigoin-back-v3",
"version": "0.1.0",
"description": "DIMIGOin Backend Application",
"main": "dist/index.js",
"repository": "https://github.com/dimigoin/dimigoin-back-v3",
"author": "Team DimigoIN",
"license": "MIT",
"private": false,
"scripts": {
"start": "nodemon",
"lint": "eslint ./src/**/*.ts",
"fix:prettier": "prettier --write \"**/*.*\""
},
"dependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/helmet": "^0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.29",
"axios": "^0.19.2",
"bcrypt-nodejs": "^0.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"nodemon": "^2.0.4",
"ts-mongoose": "^0.0.21",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.31",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
}
}