-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
50
51
52
{
"name": "web-data-extractor",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"author": "",
"license": "UNLICENSED",
"engines": {
"node": "^18.18.0"
},
"scripts": {
"build": "npm-run-all clean tsc",
"clean": "rimraf dist",
"format": "npm run -- prettier --write",
"lint": "eslint --ext js,jsx,ts,tsx .",
"nodemon": "nodemon --watch dist",
"prettier": "prettier --ignore-path .gitignore \"**/*.{css,html,js,jsx,json,ts,tsx,md,mdx,yml,yaml}\"",
"start": "ts-node src/index.ts",
"dev": "npm-run-all build --parallel tsc:watch nodemon",
"test": "npm-run-all lint test:format test:run",
"test:format": "npm run -- prettier --check",
"test:run": "npx jest",
"tsc": "tsc",
"tsc:watch": "tsc --watch"
},
"dependencies": {
"axios": "^1.5.1",
"crawlee": "^3.5.7",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^13.7.7",
"@types/node-fetch": "^2.6.6",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^29.7.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"rimraf": "^3.0.2",
"t": "^0.5.1",
"ts-node": "^10.9.1",
"typescript": "~3.8.3"
},
"prettier": {
"trailingComma": "all"
}
}