This repository has been archived by the owner on Dec 27, 2021. It is now read-only.
forked from wuhan2020/data-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.82 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
{
"name": "data-sync",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-data-sync",
"stop": "egg-scripts stop --title=egg-server-data-sync",
"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": "eslint . --ext .ts",
"clean": "ets clean"
},
"dependencies": {
"@octokit/rest": "^16.43.1",
"axios": "^0.19.2",
"egg": "^2.6.1",
"egg-scripts": "^2.6.0",
"http2": "^3.3.7",
"leven": "^3.1.0",
"moment": "^2.24.0",
"parse-address-cn": "^1.0.4",
"pinyin": "^2.9.0",
"qiniu": "^7.3.0",
"querystring": "^0.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"requestretry": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/mocha": "^2.2.40",
"@types/node": "^13.5.2",
"@types/supertest": "^2.0.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.8.0",
"eslint-config-egg": "^8.0.0",
"husky": "3.1.0",
"lint-staged": "^9.4.2",
"tslib": "^1.9.0",
"tslint": "^6.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"
],
"contributors": [
"David Z. <[email protected]>"
],
"license": "MIT"
}