-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "reservation_spaces_backend",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "dotenv -e .env -- node dist/index.js",
"build": "rm -rf dist && tsc",
"tsup": "rm -rf dist && tsup",
"serve": "node dist/index.js",
"dev": "dotenv -e .env.development -- nodemon index.ts",
"start:dev": "dotenv -e .env.development -- nodemon -r tsconfig-paths/register index.ts",
"start:dev2": "nodemon --env-file=.env.development index.ts"
},
"keywords": [],
"author": "Michael Jerry Canales Palomino",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/glob": "^8.1.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"dotenv-cli": "^8.0.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"glob": "^11.0.0",
"inversify": "^6.2.1",
"inversify-express-utils": "^6.4.10",
"inversify-socket-utils": "^1.0.1136",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.1",
"typeorm": "^0.3.20"
}
}