-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
{
"name": "nodets-backend-app",
"version": "1.0.0",
"description": "esta app ya esta con express configurado y lista para añadir las funciones segun necesidades",
"main": "build/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "cross-env DEBUG=nodets:* ts-node-dev -r tsconfig-paths/register src/index.ts",
"start": "node build/index.js",
"build": "tsc && tsc-alias -p tsconfig.json",
"lint": "eslint \"src/**/*.ts\""
},
"author": "Loza64",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.4",
"cors": "^2.8.6",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.3.0",
"morgan": "^1.11.0",
"multer": "2.2.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.13",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.2.0",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.5",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}