-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "typescriptexpresstest",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "set DEBUG=*,-send,-express:router*,-body-parser*,-express-session,-express:view & tsc-watch --onSuccess \"node build/app.js\"",
"start_linux": "DEBUG=* tsc-watch --onSuccess \"node build/app.js\"",
"initdb": "npx ts-node initializeDBTable.ts",
"mysql": "docker-compose -f ./docker-compose.mysql.yml up",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@mikro-orm/cli": "^4.5.9",
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/mysql": "^4.5.9",
"@mikro-orm/reflection": "^4.5.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "~4.16.1",
"express-session": "^1.17.2",
"moment": "^2.29.1",
"morgan": "~1.9.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "~0.9.0",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.2"
},
"mikro-orm": {
"useTsNode": true
}
}