-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "Musubi_Server",
"version": "1.0.0",
"description": "Server for FriendShip Fee Web Application",
"main": "index.js",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"server": "tsc-watch --onSuccess \"node dist/index.js\" ",
"build": "tsc",
"start": "npm run build && node ./dist"
},
"author": {
"name": "Seungho Song",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^18.15.9",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^3.2.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0",
"typeorm": "^0.3.12",
"typeorm-naming-strategies": "^4.1.0",
"winston": "^3.8.1"
}
}