-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.36 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bullwork",
"version": "2.0.1",
"description": "Framework para backend",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsc"
},
"keywords": [
"Framework",
"typescript",
"node",
"backend",
"cli",
"express",
"fast",
"scalable"
],
"author": "Diego Toro Reyes <dtoro.a.s@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/node": "^22.7.5",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "5.1.0",
"kleur": "^4.1.5",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "5.0.1",
"@types/jest": "^29.5.13",
"@types/node-cron": "^3.0.11",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"dotenv-cli": "8.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"pnpm": {
"ignoredBuiltDependencies": [
"@prisma/engines",
"prisma"
],
"onlyBuiltDependencies": [
"@prisma/client",
"esbuild"
]
}
}