-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"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": "src/index.ts",
"scripts": {
"test": "jest",
"dev": "cross-env DEBUG=nodets:* ts-node-dev src/index.ts",
"start": "node build/index.js",
"build": "tsc"
},
"author": "Loza64",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cors": "^2.8.5",
"debug": "^4.4.3",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"multer": "2.0.2",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}