-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nodejs-typescript-auth",
"version": "1.0.0",
"description": "NodeJS-TypeScript-Auth",
"repository": "https://github.com/shuvro-skytech/NodeJS-TypeScript-Auth.git",
"author": "Shuvro Sarkar",
"license": "MIT",
"private": true,
"type": "commonjs",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.0.3",
"@types/passport": "^1.0.9",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-jwt": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"commitizen": "^4.2.4",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "Please use yarn for managing dependencies"
},
"scripts": {
"build": "yarn build",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"prepare": "husky install",
"commit": "git-cz",
"typeorm": "typeorm-ts-node-esm -d ./src/config/ormconfig.ts",
"m:gen": "yarn typeorm migration:generate",
"m:run": "yarn typeorm migration:run",
"run:container": "docker-compose up -d postgres"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}