generated from juandahurt/nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "payan-back",
"version": "2.0.0",
"description": "template for a node app",
"author": "Juan David Hurtado",
"license": "MIT",
"main": "src/server.js",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/juandahurt/payan-back"
},
"engines": {
"node": "14.x",
"npm": "8.5.0"
},
"scripts": {
"start": "ts-node src/server.ts",
"test": "jest --detectOpenHandles",
"dev": "nodemon src/server.ts"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.13",
"@types/jsonwebtoken": "^8.5.2",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.6.0",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "4.16",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.7.5",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"ts-node": "^9.1.1",
"typescript": "^4.0.2"
},
"devDependencies": {
"jest": "^26.0.0",
"nodemon": "^2.0.7",
"ts-jest": "^26.3.0"
}
}