This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
90 lines (90 loc) · 2.29 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
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
{
"name": "egg-admin",
"version": "1.0.0",
"description": "egg-admin",
"private": true,
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"start": "egg-scripts start --sticky --daemon --title=egg-admin-server",
"stop": "egg-scripts stop --sticky --title=egg-admin-server",
"dev": "egg-bin dev --sticky",
"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": "eslint . --ext .ts",
"clean": "ets clean",
"build": "npm run tsc",
"apidoc": "apidoc -i app/controller -o docs/api"
},
"dependencies": {
"@hackycy/egg-bull": "0.0.5",
"@hackycy/egg-class-validator": "0.1.1",
"@hackycy/egg-typeorm": "^0.4.1",
"axios": "^0.21.1",
"bull": "^3.18.0",
"cheerio": "^1.0.0-rc.3",
"crypto-js": "^4.0.0",
"egg": "^2.6.1",
"egg-cors": "^2.2.3",
"egg-global-header": "^1.0.1",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.6.0",
"egg-validate": "^2.0.2",
"egg-view-nunjucks": "^2.2.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"nanoid": "^3.1.12",
"nodemailer": "^6.4.11",
"puppeteer-core": "^5.3.1",
"qiniu": "^7.3.2",
"svg-captcha": "^1.4.0",
"ua-parser-js": "^0.7.22",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bull": "^3.14.4",
"@types/cheerio": "^0.22.22",
"@types/lodash": "^4.14.162",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/nodemailer": "^6.4.0",
"@types/puppeteer-core": "^2.0.0",
"@types/supertest": "^2.0.0",
"@types/ua-parser-js": "^0.7.33",
"apidoc": "^0.25.0",
"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.7.2",
"eslint-config-egg": "^8.0.0",
"tslib": "^1.9.0",
"typescript": "^3.0.0"
},
"engines": {
"node": ">=8.9.0"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"eslintIgnore": [
"coverage"
],
"author": "hackycy",
"license": "MIT"
}