-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.93 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
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
80
81
82
83
84
85
{
"name": "22th-graduation-project",
"version": "1.0.0",
"description": "22년도 졸업 프로젝트 서버 코드 저장소",
"scripts": {
"start": "nodemon -r tsconfig-paths/register --watch \"src/**/*.ts\" --exec \"ts-node\" src/config/connection/server.ts",
"build": "npx tsc",
"api-docs": "swagger-cli bundle ./src/config/swagger/openapi.yaml --outfile build/swagger.yaml --type yaml",
"prestart": "npm run api-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YoungGyo-00/22th-graduation-project.git"
},
"author": "YoungGyo-00",
"license": "ISC",
"bugs": {
"url": "https://github.com/YoungGyo-00/22th-graduation-project/issues"
},
"homepage": "https://github.com/YoungGyo-00/22th-graduation-project#readme",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"hl7-standard": "1.0.4",
"http-status-codes": "^2.2.0",
"kafkajs": "2.2.2",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"session-file-store": "^1.5.0",
"simple-hl7": "3.2.4",
"swagger-cli": "^4.0.4",
"typedi": "^0.10.0",
"typeorm": "^0.2.5",
"typeorm-naming-strategies": "^4.1.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.1",
"@types/node-schedule": "^2.1.0",
"@types/passport": "^1.0.9",
"@types/passport-local": "^1.0.34",
"@types/session-file-store": "^1.2.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.4",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"class-validator": "^0.13.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.18",
"pm2": "5.2.2",
"prettier": "^2.7.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
}
}