forked from etejedaw/caredotcom-fondecyt-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.44 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
47
48
49
{
"name": "fondecyt",
"version": "1.1.2",
"description": "From automation to home production via the gig economy: a novel gender-based análisis",
"main": "app.js",
"scripts": {
"start": "npx tsc && node dist/src/app.js",
"build": "npx tsc -b",
"dev": "nodemon -w './**/*.ts' --exec 'ts-node' src/app.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etejedaw/fondecyt-scrape-care.git"
},
"author": "Esteban Tejeda",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/etejedaw/fondecyt-scrape-care/issues"
},
"homepage": "https://github.com/etejedaw/fondecyt-scrape-care#readme",
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/jest": "^27.4.1",
"@types/json2csv": "^5.0.3",
"@types/node-fetch": "^2.6.1",
"@types/request": "^2.48.8",
"@types/request-promise": "^4.1.48",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"dotenv": "^16.0.1",
"json2csv": "^5.0.7",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"request-promise": "^4.2.6"
}
}