forked from inakianduaga/amazon-warehouse-deals-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 980 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
{
"name": "amazon-warehouse-deals-crawler",
"version": "1.0.0",
"description": "Amazon Warehouse Deals Price Crawler",
"main": "build/index.js",
"author": "Inaki Anduaga <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"prestart": "yarn run build",
"build": "tsc -p .",
"cleanStorage": "rimraf ./.storage",
"dev": "tsc -w",
"prettier:fix": "prettier --write '*/**/*.{js,ts,tsx,json,md,scss,graphql,css}' '*.{js,ts,tsx,json,md,scss,graphql,css}'"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"node-localstorage": "^2.2.1",
"nodemailer": "^6.6.3",
"puppeteer": "^10.2.0",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^16.9.1",
"@types/nodemailer": "^6.4.4",
"@types/puppeteer": "^5.4.4",
"eslint": "^7.32.0",
"prettier": "^2.4.0"
}
}