-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.8 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
{
"name": "express-template",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "npx jest --detectOpenHandles",
"test:container": "npx jest --detectOpenHandles",
"build": "npm run lint && npm run routes && tsc --p tsconfig.build.json",
"start": "node dist/index.js",
"dev:start": "npm run build && node dist/index.js",
"dev": "nodemon --watch src -i src/migrations/sqlite -i src/migrations/mysql -e ts --exec npm run dev:start",
"routes": "npx tsoa routes && npx tsoa spec-and-routes",
"lint": "eslint . --ext .ts"
},
"_moduleAliases": {
"@": "./dist"
},
"author": "Park Hyeonjun",
"license": "ISC",
"dependencies": {
"@mikro-orm/cli": "^5.7.11",
"@mikro-orm/core": "^5.7.11",
"@mikro-orm/migrations": "^5.7.11",
"@mikro-orm/mysql": "^5.7.11",
"@mikro-orm/reflection": "^5.7.11",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"module-alias": "^2.2.2",
"mysql2": "^3.2.0",
"swagger-ui-express": "^4.6.3",
"tsoa": "^5.1.1"
},
"devDependencies": {
"@mikro-orm/sqlite": "^5.7.11",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.14",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"testcontainers": "^9.3.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}