-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 873 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
38
39
{
"name": "dl-scrape",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc -w && nodemon dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.14.0",
"gulp": "^4.0.2",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
},
"dependencies": {
"archiver": "^5.3.1",
"axios": "^1.3.3",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"nanoid": "^4.0.1",
"node-fetch": "^3.3.0",
"readline": "^1.3.0",
"request": "^2.88.2",
"requests": "^0.3.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
}
}