-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "todo-server",
"version": "1.0.0",
"description": "\"투두앱 리팩토링하여 재구현하기 위한 REST API 서버\"",
"main": "app.ts",
"scripts": {
"build": "npx tsc",
"start": "nodemon app",
"dev": "nodemon --watch \"*.ts\" --exec \"ts-node\" app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"redis": "^4.6.10",
"sequelize": "^6.33.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.3",
"@types/passport-jwt": "^3.0.10",
"@types/redis": "^4.0.11",
"@types/sequelize": "^4.28.15",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}