-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"ts": "tsc-watch --onSuccess \"node build/server.js\" ",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "ts-patch install",
"start": "ts-node src/server.ts",
"start:dev": "ts-node --transpile-only src/server.ts --watch",
"start:production": "NODE_ENV=production ts-node src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"class-validator": "^0.14.0",
"class-validator-jsonschema": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"openai": "^3.3.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.1",
"routing-controllers-openapi": "^4.0.0",
"typeorm": "^0.3.12",
"typeorm-model-generator": "^0.4.6",
"typeorm-typedi-extensions": "^0.4.1",
"uuid": "^9.0.0",
"winston-daily-rotate-file": "^4.7.1",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
}
}