-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "backend-template-martinherranzc",
"version": "1.0.21",
"type": "module",
"description": "Hexagonal Template for NodeJs Backend/Fullstack projects with Swagger API Documentation",
"main": "dist/app.js",
"types": "src/app.d.ts",
"scripts": {
"test": "vitest --config src/config/vitest.config.ts",
"start": "nodemon --exec ts-node src/app.ts",
"dev": "vitest --watch",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"copy": "node /node_modules/backend-template-martinherranzc/copy-structure.js"
},
"keywords": [
"template",
"typescript",
"nodejs",
"express"
],
"files": [
"src/**/*",
"copy-structure.js",
"LICENSE",
"README.md",
"tsconfig.json",
".env.example",
".gitignore",
"package.json"
],
"author": "Claudio Martin Herranz",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.3",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}