-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 921 Bytes
/
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
{
"dependencies": {
"@types/cheerio": "^0.22.30",
"axios": "^0.25.0",
"batch-promises": "0.0.3",
"body-parser": "^1.19.1",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"helmet": "^5.0.2",
"mongodb": "^4.3.1",
"morgan": "^1.10.0",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"nodemon": "^2.0.15",
"serverless-offline": "^8.4.0",
"serverless-plugin-typescript": "^2.1.1",
"typescript": "^4.5.5"
},
"scripts": {
"start": "node dist/app.js",
"dev": "start http://localhost:5000/scraper & nodemon src/app.ts ",
"build": "tsc -p ."
}
}