-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "osmrtnice-crawl",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"run": "npm run build && npm run start",
"clean": "rm index.js || rm crawler.zip || rm vendors.zip",
"build": "npm run clean || node esbuild.config.mjs && npm run zip",
"install-vendors": "cd ./nodejs && npm install && cd ..",
"zip": "zip -r9 crawler.zip index.js",
"test": "jest --watchAll --detectOpenHandles",
"test:monitor": "node --expose-gc ./node_modules/.bin/jest --runInBand --logHeapUsage",
"watch": "tsc --watch",
"start": "node -r dotenv/config index.js"
},
"dependencies": {
"mongodb": "^4.13.0",
"puppeteer-core": "^10.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/expect-puppeteer": "^4.4.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.5.8",
"@types/puppeteer-core": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"chrome-aws-lambda": "^10.0.0",
"dotenv": "^8.2.0",
"esbuild": "^0.18.20",
"esbuild-node-externals": "^1.8.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"glob": "^7.1.6",
"jest": "^29.0.0",
"jest-puppeteer": "6.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}