-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
{
"name": "aelf-block-api",
"version": "1.2.0",
"description": "",
"private": true,
"dependencies": {
"aelf-sdk": "^3.2.33",
"aelf-sdk-cross-chain": "^1.0.14",
"async-validator": "^3.1.0",
"axios": "^0.19.2",
"bignumber.js": "^9.0.0",
"decimal.js": "^10.2.0",
"egg": "^2.23.0",
"egg-mysql": "^3.0.0",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.11.0",
"egg-socket.io": "^4.1.6",
"egg-validate": "^2.0.2",
"elliptic": "^6.5.1",
"dotenv": "^8.2.0",
"lodash.camelcase": "^4.3.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"autod": "^3.1.0",
"autod-egg": "^1.1.0",
"commitizen": "^4.0.3",
"cross-env": "^5.2.1",
"egg-bin": "^4.13.0",
"egg-ci": "^1.13.0",
"egg-mock": "^3.23.1",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-egg": "^7.5.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"git-cz": "^3.2.1",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"rimraf": "^2.6.3"
},
"engines": {
"node": ">=10.9.0"
},
"scripts": {
"start": "cross-env NODE_ENV=production EGG_SERVER_ENV=prod egg-scripts start --port 7101 --sticky --daemon --title=egg-server-aelf-block-api",
"stop": "egg-scripts stop --title=egg-server-aelf-block-api",
"dev": "cross-env NODE_ENV=development EGG_SERVER_ENV=local egg-bin dev --port 7101 --sticky",
"debug": "egg-bin debug",
"test": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"commit": "git-cz"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AElfProject/aelf-block-api.git"
},
"author": "hzz780,huangzongzhe",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
}
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}