-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "auth-gateway",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"start": "node ./dist/index.js",
"migrate:up": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrate:down": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"watch": "nodemon src/index.ts",
"build": "webpack --progress"
},
"repository": "https://github.com/joshibhaumik/OAuth2.0.git",
"author": "Bhaumik Joshi",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.2",
"@types/uuid": "^8.3.1",
"copy-webpack-plugin": "^9.0.1",
"nodemon": "^2.0.12",
"ts-loader": "^9.2.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.1.23",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
}
}