-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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
{
"scripts": {
"start": "node -r module-alias/register -r tsconfig-paths/register dist/index.js",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc"
},
"dependencies": {
"inversify": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"typescript": "^5.8.2",
"pg": "^8.14.1",
"bcrypt": "^5.1.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@types/dotenv": "^6.1.1",
"@types/he": "^1.2.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.0",
"dotenv": "^16.4.7",
"cli-table3": "^0.6.5",
"module-alias": "^2.2.3",
"reflect-metadata": "^0.2.2",
"tsconfig-paths": "^4.2.0",
"@types/pg": "^8.11.13",
"@types/bcrypt": "^5.0.2"
},
"_moduleAliases": {
"@interfaces": "dist/Interfaces",
"@repository": "dist/Repository",
"@essences": "dist/Essences",
"@services": "dist/Services",
"@front": "dist/Front",
"@commands": "dist/Commands",
"@facade": "dist/Facade",
"@index": "dist/"
}
}