-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.88 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "smart-signature-backend",
"version": "1.0.0",
"description": "Backend service for Matataki platform.",
"author": "Matataki <https://github.com/Matataki-io>",
"license": "AGPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Matataki-io/smart-signature-backend.git"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "egg-scripts start --port=7001 --daemon",
"serve": "NODE_ENV=production egg-scripts start",
"stop": "egg-scripts stop",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"db:init": "node ./scripts/database/init.js"
},
"egg": {
"declarations": true
},
"dependencies": {
"@elastic/elasticsearch": "^7.17.0",
"@fleekhq/fleek-storage-js": "^1.0.17",
"alipay-sdk": "^3.4.0",
"async": "^2.6.2",
"axios": "^0.18.0",
"base64url": "^3.0.1",
"cheerio": "1.0.0-rc.3",
"commandx": "^1.5.4",
"core-js": "^3.30.2",
"crypto-js": "^3.1.9-1",
"domino": "^2.1.3",
"egg": "^2.15.1",
"egg-alinode": "^2.0.1",
"egg-cors": "^2.2.3",
"egg-mysql": "^3.4.0",
"egg-oss": "^2.0.0",
"egg-passport": "^2.1.1",
"egg-passport-facebook": "^1.0.1",
"egg-passport-twitter": "^1.0.0",
"egg-ratelimiter": "^0.1.0",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.11.0",
"egg-tenpay": "^1.0.1",
"egg-view-nunjucks": "^2.2.0",
"egg-wxpay": "^0.1.0",
"eosjs": "^16.0.9",
"eth-sig-util": "^2.5.0",
"ethereumjs-tx": "^2.1.1",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.1.2",
"file-type": "^12.0.1",
"form-data": "^3.0.0",
"googleapis": "^52.1.0",
"gt3-sdk": "^2.0.0",
"hcaptcha": "^0.0.2",
"image-downloader": "^3.4.2",
"ipfs-http-client": "^56.0.3",
"jszip": "^3.4.0",
"jwt-simple": "^0.5.5",
"markdown-article-to-html": "^1.0.3",
"moment": "^2.24.0",
"nanoid": "^2.1.1",
"node-html-parser": "^1.2.1",
"nodemailer": "^6.1.1",
"oauth": "^0.9.15",
"ontology-ts-sdk": "^1.0.22",
"page-metadata-parser": "^1.1.4",
"passport-twitter": "^1.0.4",
"pretty": "^2.0.0",
"querystring": "^0.2.0",
"ramda": "^0.27.0",
"remove-markdown": "^0.3.0",
"sanitize-html": "^1.20.1",
"steem": "^0.7.11",
"string-random": "^0.1.3",
"tenpay": "^2.1.18",
"tnwx": "2.4.0",
"turndown": "^5.0.3",
"uuid": "^8.3.2",
"web3": "^1.2.4",
"xml2js": "0.4.23",
"yaml": "^1.10.2"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"eslint": "^5.13.0",
"eslint-config-egg": "^7.1.0",
"webstorm-disable-index": "^1.2.0"
}
}