-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "live-apps-auth-ms",
"version": "1.0.0",
"description": "Authentication microservice for Live Apps",
"main": "index.js",
"scripts": {
"start": "tsc && node ./dist/main.js",
"dev": "nodemon ./src/main.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/live-apps-in/live-apps-auth-ms.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/live-apps-in/live-apps-auth-ms/issues"
},
"homepage": "https://github.com/live-apps-in/live-apps-auth-ms#readme",
"dependencies": {
"@types/amqplib": "^0.10.0",
"@types/cors": "^2.8.12",
"@types/node": "^18.11.9",
"amqplib": "^0.10.3",
"aws-sdk": "^2.1261.0",
"axios": "^1.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"bcrypt": "^5.1.0",
"eslint": "^8.28.0",
"joi": "^17.7.0",
"uuid": "^9.0.0"
}
}