-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "alipay-supervisor",
"version": "1.6.0",
"description": "A supervisor script for alipay orders",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "UV_THREADPOOL_SIZE=64 forever start lib/index.js",
"stop": "forever stop lib/index.js"
},
"keywords": [
"Alipay",
"Spider"
],
"author": "WuXueqian",
"license": "MIT",
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/puppeteer": "^1.0.0",
"axios": "^0.17.1",
"cheerio": "^0.22.0",
"crypto": "0.0.3",
"forever": "^0.15.3",
"iconv-lite": "^0.4.15",
"koa": "^2.4.1",
"koa-route": "^3.2.0",
"lodash": "^4.17.2",
"moment": "^2.19.2",
"node-schedule": "^1.2.0",
"nodemailer": "^2.6.4",
"puppeteer": "^1.0.0",
"qs": "^6.5.1"
},
"devDependencies": {
"@types/node": "^8.0.53",
"rimraf": "^2.6.2",
"typescript": "^2.6.1"
}
}