-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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": "flickfeed-be",
"version": "1.0.0",
"description": "FlickFeed에 필요한 백엔드 API 구현 (Express 사용)",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nevacat/FlickFeed-BE.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nevacat/FlickFeed-BE/issues"
},
"homepage": "https://github.com/Nevacat/FlickFeed-BE#readme",
"dependencies": {
"aws-sdk": "^2.1359.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.15"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"typescript": "^5.0.4"
}
}