-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "inflab-task",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "IS_TEST=true jest --runInBand --detectOpenHandles --forceExit --verbose",
"dev": "ts-node-dev --transpile-only -r tsconfig-paths/register ./src/server.ts",
"build": "rimraf ./dist && tsc",
"start": "npm run build && ts-node-dev -r tsconfig-paths/register dist/src/server.js"
},
"keywords": [],
"author": "Youngmyung Kim",
"license": "ISC",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.2.0",
"mysql2": "^3.11.0",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.8.0",
"typescript": "^5.5.4",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@johanblumenberg/ts-mockito": "^1.0.45",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0"
}
}