-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "auth-api",
"version": "1.0.0",
"description": "Intermediate Auth API",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node dist/index.js",
"build": "npx babel --extensions .ts ./src -d dist && npm run copypublic",
"dev": "nodemon --watch ./**/*.ts --watch ./**/*.js --exec tsx ./src/index.ts",
"copypublic": "ncp ./src/public ./dist/public",
"docker_build": "npm run build && docker build --squash -t felipekobra/auth_api .",
"docker_run": "docker run --name auth_container -p 3000:3000 --rm --env-file .env -e POSTGRE_HOST=host.docker.internal felipekobra/auth_api",
"docker_pull": "docker pull felipekobra/auth_api",
"docker_push": "docker push felipekobra/auth_api"
},
"author": "Felipe Kobra",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-flow-strip-types": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.4.1",
"@types/nodemailer": "^6.4.15",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/pem-jwk": "^2.0.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ncp": "^2.0.0",
"nodemon": "^3.1.4",
"sqlite3": "^5.1.7",
"tsx": "^4.17.0",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"auth-api": "file:",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pem-jwk": "^2.0.0",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"supertest": "^7.0.0",
"uuid": "^10.0.0"
}
}