-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 950 Bytes
/
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
{
"name": "server-node-clean-architecture",
"version": "1.0.0",
"description": "Servidor node con arquictectura limpia",
"main": "app.js",
"author": "trxsalo",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --clear src/app.ts",
"build": "rimraf ./dist && tsc ",
"start": "npm run build && node dist/app.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.22",
"morgan": "^1.10.0",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"env-var": "^7.4.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.1"
}
}