-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
52
53
54
{
"name": "auth-backend",
"version": "1.0.0",
"description": "Backend de nuestro AUTH ",
"main": "index.js",
"scripts": {
"dev": "rm -rf dist/ & tsc && node dist/App.js",
"devWindows": "rd /s /Q dist & tsc && node dist/App.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tresee/auth-backend.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/tresee/auth-backend#readme",
"dependencies": {
"@overnightjs/core": "^1.6.14",
"@overnightjs/logger": "^1.1.10",
"axios": "^0.19.2",
"bcrypt": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.5",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.29",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/mailgun-js": "^0.22.4",
"@types/mysql": "^2.15.9",
"@types/node": "^13.7.6",
"@types/passport": "^1.0.2",
"@types/passport-google-oauth2": "^0.1.3",
"@types/passport-local": "^1.0.33",
"@types/validator": "^12.0.1",
"typescript": "^3.8.2"
}
}