-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase-admin": "^11.5.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^2.3.3",
"pm2": "^5.3.0",
"sequelize": "^6.28.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"name": "yychoice_server",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"dev": "nodemon --watch src --exec 'npx' 'ts-node' ./src/server.ts",
"build": "tsc",
"start": "cross-env NODE_ENV=production PORT=80 pm2 start ./dist/server.js -i -1",
"reload": "tsc && cross-env NODE_ENV=production PORT=80 pm2 reload ./dist/server.js -i -1"
},
"author": "kimyoungyin",
"license": "MIT",
"description": "yyChoice api"
}