-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "crawl",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npx tsc --importHelpers",
"watch:build": "tsc --watch --importHelpers",
"mainshop": "node ./dist/crawlers/mainShopCrawler.js",
"subshops:all": "node ./dist/crawlers/subShopsCrawler.js",
"subshops:motherboard": "node ./dist/crawlers/motherBoardCrawler.js",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"test-npx": "npx jest --detectOpenHandles --runInBand --forceExit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@logdna/logger": "^2.1.2",
"@types/mongoose": "^5.7.36",
"@types/puppeteer": "^3.0.1",
"jest-puppeteer": "^4.4.0",
"mongoose": "^5.10.0",
"puppeteer": "^5.2.1",
"tslib": "^2.0.1",
"typescript-logging": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/jest-environment-puppeteer": "^4.4.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}