-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "web_kp_auth",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"pm2": "pm2 restart node_modules/.bin/ts-node -- -r tsconfig-paths/register ./src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmin0211/Web_KP_Auth.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmin0211/Web_KP_Auth/issues"
},
"homepage": "https://github.com/dmin0211/Web_KP_Auth#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-redis": "^6.1.1",
"cookie-parser": "^1.4.6",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"ioredis": "^4.28.5",
"module-alias": "^2.2.2",
"mongoose": "^6.2.1",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/connect-redis": "^0.0.18",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.17",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.5.0"
},
"_moduleAliases": {
"src": "src"
}
}