-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.45 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
51
52
53
54
{
"name": "fast-server",
"version": "1.0.0",
"description": "一套通用的、快速开发的、性能强劲的、功能齐全的 node 服务器解决方案。",
"main": "app.js",
"scripts": {
"start": "./node_modules/.bin/cross-env NODE_ENV=develop ./node_modules/.bin/nodemon app.js",
"pm2": "pm2 start app.js --watch -i max",
"restart": "pm2 restart app.js",
"test": "./node_modules/mocha/bin/mocha"
},
"author": "leiquan",
"license": "MIT",
"dependencies": {
"@alicloud/sms-sdk": "^1.1.1",
"ali-oss": "^5.2.0",
"axios": "^0.19.0",
"co": "^4.6.0",
"crawler": "^1.2.1",
"cron": "^1.3.0",
"cross-env": "^5.1.1",
"ejs": "^2.6.1",
"ioredis": "^4.2.0",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-generic-session": "^2.0.1",
"koa-log4": "^2.3.0",
"koa-redis": "^3.1.3",
"koa-router": "^7.2.1",
"koa-session": "^5.8.1",
"koa-sslify": "^2.1.2",
"koa-static": "^4.0.2",
"koa-views": "^6.2.0",
"koa-xml-body": "^2.0.0",
"koa2-cors": "^2.0.5",
"kue": "^0.11.6",
"mysql2": "^1.5.3",
"mysqldump": "^1.4.2",
"node-schedule": "^1.3.1",
"nodemon": "^1.12.1",
"pm2": "^5.2.2",
"qr-image": "^3.2.0",
"request": "^2.83.0",
"sequelize": "^6.29.0",
"should": "^13.2.3",
"socket.io": "^2.3.0",
"supertest": "^3.3.0",
"xml2json": "^0.11.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"mocha": "^10.2.0"
}
}