-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "tp-tap",
"version": "0.1.0",
"description": "TP de técnicas avanzadas de programación. Aplicación de salas de chat.",
"main": "./out/app.js",
"scripts": {
"devd": "tsc -p . && docker run -it -p 8080:8080 --rm --name my-running-script -v /home/luis/up/tap/tp-tap:/usr/src/app -w /usr/src/app node node -r dotenv/config ./out/app.js",
"dev": "tsc -p . && node -r dotenv/config ./out/app.js",
"prod": "tsc -p . && node ./out/app.js",
"clean": "rm -rf ./out/*",
"start": "tsc -p . && node ./out/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Luisfc68/tp-tap.git"
},
"keywords": [
"socket.io",
"ts.ed",
"chat"
],
"author": "Luis Chavez",
"license": "ISC",
"bugs": {
"url": "https://github.com/Luisfc68/tp-tap/issues"
},
"homepage": "https://github.com/Luisfc68/tp-tap#readme",
"dependencies": {
"@tsed/common": "^6.73.5",
"@tsed/core": "^6.73.5",
"@tsed/di": "^6.73.5",
"@tsed/exceptions": "^6.73.5",
"@tsed/json-mapper": "^6.73.5",
"@tsed/mongoose": "^6.73.5",
"@tsed/passport": "^6.73.5",
"@tsed/platform-express": "^6.73.5",
"@tsed/schema": "^6.73.5",
"@tsed/socketio": "^6.73.5",
"@types/express": "^4.17.13",
"@types/glob": "^7.1.4",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.1",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"cors": "^2.8.5",
"express": "^4.17.1",
"glob": "^7.2.0",
"mongoose": "^5.13.9",
"passport-jwt": "^4.0.0",
"socket.io": "^4.2.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"dotenv": "^10.0.0"
}
}