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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
| {
| "name": "nodeapi",
| "version": "1.0.0",
| "description": "show case",
| "private": true,
| "egg": {
| "typescript": true,
| "declarations": true
| },
| "scripts": {
| "start": "egg-scripts start --daemon --title=egg-server-nodeapi --ignore-stderr",
| "stop": "egg-scripts stop --title=egg-server-nodeapi",
| "dev": "egg-bin dev",
| "debug": "egg-bin debug",
| "test-local": "egg-bin test",
| "test": "npm run lint -- --fix && npm run test-local",
| "cov": "egg-bin cov",
| "tsc": "ets && tsc -p tsconfig.json",
| "ci": "npm run lint && npm run cov && npm run tsc",
| "autod": "autod",
| "lint": "tslint --project . -c tslint.json",
| "clean": "ets clean"
| },
| "dependencies": {
| "@types/ali-oss": "^6.0.4",
| "@types/archiver": "^3.1.0",
| "@types/moment": "^2.13.0",
| "@types/mongodb": "^3.3.2",
| "@types/mssql": "^4.3.1",
| "@types/node-rsa": "^1.0.0",
| "@types/nodemailer": "^6.2.2",
| "@types/unzip": "^0.1.1",
| "@types/xml2js": "^0.4.5",
| "ali-oss": "^6.1.1",
| "archiver": "^4.0.1",
| "async-lock": "^1.2.8",
| "axios": "^0.19.0",
| "baidu-aip-sdk": "^2.4.4",
| "captchapng": "0.0.1",
| "cross-unzip": "^0.2.1",
| "cross-zip": "^3.1.0",
| "crypto-js": "^3.1.9-1",
| "egg": "^2.6.1",
| "egg-cors": "^2.2.0",
| "egg-mongo-native": "^3.5.0",
| "egg-mongodb": "^1.1.1",
| "egg-mysql": "^3.0.0",
| "egg-redis": "^2.4.0",
| "egg-scripts": "^2.6.0",
| "egg-security": "^2.5.0",
| "egg-shell-decorators": "^1.0.7",
| "koa-compress": "^3.1.0",
| "lockman": "^1.0.2",
| "moment": "^2.24.0",
| "mongodb": "^3.3.2",
| "mssql": "^5.1.0",
| "mysql": "^2.17.1",
| "node-rsa": "^1.0.8",
| "node-uuid": "^1.4.8",
| "nodemailer": "^6.3.1",
| "oracledb": "^5.1.0",
| "pg": "^7.12.1",
| "reflect-metadata": "^0.1.13",
| "request": "^2.88.0",
| "request-promise": "^4.2.5",
| "soap": "^0.35.0",
| "typeorm": "0.2.17",
| "unzip": "^0.1.11",
| "urlencode": "^1.1.0",
| "win-7zip": "^0.1.1",
| "ws": "^7.3.0",
| "xlsx": "^0.15.1",
| "xlsx-style": "^0.8.13",
| "xml2js": "^0.4.22"
| },
| "devDependencies": {
| "@types/mocha": "^2.2.40",
| "@types/node": "^7.10.9",
| "@types/supertest": "^2.0.0",
| "ajv": "^6.10.2",
| "autod": "^3.0.1",
| "autod-egg": "^1.1.0",
| "egg-bin": "^4.11.0",
| "egg-ci": "^1.8.0",
| "egg-mock": "^3.16.0",
| "eslint": "^6.0.1",
| "eslint-config-defaults": "^9.0.0",
| "tslib": "^1.9.0",
| "tslint": "^5.0.0",
| "tslint-config-egg": "^1.0.0",
| "typescript": "^3.0.0"
| },
| "engines": {
| "node": ">=8.9.0"
| },
| "ci": {
| "version": "8"
| },
| "repository": {
| "type": "git",
| "url": ""
| },
| "eslintIgnore": [
| "coverage"
| ],
| "author": "xtb",
| "license": "MIT"
| }
|
|