-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
48
49
50
{
"name": "nodecrawler",
"version": "1.0.0",
"description": "node 爬虫小程序",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV='development' && nodemon index.js",
"start": "node index.js"
},
"engines": {
"node": "10.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightzhu/Node_Crawler.git"
},
"keywords": [
"koa",
"node"
],
"author": "lightzhu",
"license": "ISC",
"bugs": {
"url": "https://github.com/lightzhu/Node_Crawler/issues"
},
"homepage": "https://github.com/lightzhu/Node_Crawler#readme",
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"glob": "^7.1.6",
"iconv-lite": "^0.5.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-cors": "0.0.16",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"moment": "^2.24.0",
"mongoose": "^5.6.1",
"node-schedule": "^1.3.2",
"pm2": "^4.2.3",
"puppeteer": "^3.1.0",
"request": "^2.88.0",
"sleep": "^6.2.0"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}