-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "api_read_hacker_news",
"version": "1.0.0",
"description": "Api dedicada a la lectura periodica de la Api de hacker news",
"main": "index.js",
"scripts": {
"start": "tsc && node build/server.js",
"build": "tsc",
"test": "jest --coverage && exit 1",
"tsc": "tsc --traceResolution"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/josemartinjr22/api_read_hacker_news.git"
},
"author": "Jose Jimenez",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/josemartinjr22/api_read_hacker_news/issues"
},
"homepage": "https://gitlab.com/josemartinjr22/api_read_hacker_news#readme",
"dependencies": {
"axios": "^0.26.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"module-alias": "^2.2.2",
"node-cron": "^3.0.0",
"pg": "^8.7.3",
"supertest": "^6.2.2",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/node-cron": "^3.0.1",
"@types/pg": "^8.6.4",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
}
}