-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cyworld_be",
"version": "1.0.0",
"description": "clone_project_refactoring",
"main": "build/server.js",
"scripts": {
"build": "tsc",
"start": "export NODE_ENV=production && node build/server.js",
"dev": "export NODE_ENV=development && nodemon --exec ts-node server.ts",
"db:create": "ts-node src/db/config/create.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/refactoring-CyworldCloneCoding/BE.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/refactoring-CyworldCloneCoding/BE/issues"
},
"homepage": "https://github.com/refactoring-CyworldCloneCoding/BE#readme",
"dependencies": {
"aws-sdk": "^2.1333.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.1.2",
"passport": "^0.6.0",
"passport-kakao": "^1.0.1",
"prettier": "^2.8.4",
"redis": "^4.6.4",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.12",
"@types/node": "^18.15.3",
"@types/passport": "^1.0.12",
"@types/passport-kakao": "^1.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"optionalDependencies": {
"fsevents": "*"
}
}