-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "api-poc",
"version": "1.0.0",
"description": "API Restful - administration tool",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon",
"build": "tsc",
"test": "jest",
"test-report": "jest --coverage"
},
"author": "Antonio Olvera",
"license": "ISC",
"dependencies": {
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.11.97",
"jest": "^27.5.1",
"mongoose": "^6.2.3",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}