-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "puppeteer-scraper",
"version": "0.1.0",
"description": "Puppeteer Scraper",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./dist/app.js",
"dev": "nodemon --ignore 'screenshots/' --ignore 'output/ src/app.ts",
"build": "tsc -p .",
"prettier": "prettier --write src/**/*.ts",
"lint": "npm run prettier && eslint src/**/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"puppeteer": "^22.0.0",
"winston": "^3.9.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}