-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 960 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
35
36
37
{
"name": "zippydirect",
"main": "src/index.ts",
"dependencies": {
"@types/express": "^4.17.13",
"axios": "^1.3.5",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"http-server": "^14.1.1",
"jsdom": "^21.1.1",
"nekowrap": "^3.4.0",
"node-fetch": "^3.2.0",
"puppeteer": "^15.5.0",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"copyfiles": "^2.4.1",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"type": "module",
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"start": "npm run build && node dist/src/index.js"
}
}