-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "express-scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx nodemon",
"start": "npx nodemon",
"build": "npx tsup app --clean --format cjs --env.NODE_ENV production --env.DEPLOYMENT_ENV vercel && node copy-files.js",
"add-build": "git add dist",
"cheerio-tree:generate": "npx tsx bin/generate.ts",
"lint": "eslint . --ext .ts",
"test": "npx jest"
},
"author": "sead",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"tsup": "^8.2.0"
},
"dependencies": {
"cheerio-tree": "^1.0.5",
"debug": "^4.3.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"got-scraping": "^4.0.6",
"morgan": "^1.10.0",
"response-time": "^2.3.2",
"turndown": "^7.2.0"
},
"pre-commit": [
"build",
"add-build"
]
}