-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.36 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dsm-roc_backend",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"repository": "git+https://github.com/DSM-ROC/DSM-ROC_Backend.git",
"author": "yebin <yebin5127@gmail.com>, Sangjin <sangjin170202@naver.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DSM-ROC/DSM-ROC_Backend/issues"
},
"homepage": "https://github.com/DSM-ROC/DSM-ROC_Backend#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm": "typeorm-ts-node-commonjs",
"dev": "env TZ=Asia/Seoul env-cmd -f .env.dev nodemon --exec ts-node src/app.ts",
"build": "env TZ=Asia/Seoul tsc",
"start": "env TZ=Asia/Seoul NODE_ENV=production env-cmd -f .env node build/app.js",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier:write": "yarn prettier --write .",
"prepare": "husky install",
"precommit": "yarn lint-staged"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.238.0",
"@types/express": "^4.17.15",
"@types/morgan": "^1.9.3",
"aws-sdk": "^2.1282.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"http": "^0.0.1-security",
"i": "^0.3.7",
"iconv-lite": "^0.6.3",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"npm": "^9.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.38",
"typeorm-naming-strategies": "^4.1.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.0",
"@types/multer-s3": "^3.0.0",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"env-cmd": "^10.1.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
}
}