-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "event-management-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "ts-node-dev --exit-child --files --transpile-only --project tsconfig.json src/server.ts | pino-pretty",
"build": "tsc",
"seed": "ts-node seeds/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.10",
"pino-pretty": "^9.1.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/morgan": "^1.9.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"pino": "^8.7.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10",
"validator": "^13.7.0",
"zod": "^3.19.1"
}
}