-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "aelf-scan-mysql",
"version": "1.1.1",
"description": "a mysql extension for scan",
"main": "src/index.js",
"scripts": {
"dev": "npm run clean && cross-env NODE_ENV=development pm2 start src/index.js --name aelf-scan-mysql --time",
"start": "cross-env NODE_ENV=production pm2 start src/index.js --name aelf-scan-mysql --exp-backoff-restart-delay=1000 --time",
"clean": "rimraf ./*.log ",
"commit": "git-cz",
"proto": "node scripts/compile-proto.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AElfProject/aelf-scan-mysql.git"
},
"author": "Atom Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AElfProject/aelf-scan-mysql/issues"
},
"homepage": "https://github.com/AElfProject/aelf-scan-mysql#readme",
"devDependencies": {
"babel-eslint": "^10.0.2",
"chalk": "^2.4.2",
"commitizen": "^4.0.3",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"git-cz": "^3.2.1",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"lodash": "^4.17.15",
"rimraf": "^2.6.3",
"standard-version": "^8.0.0"
},
"dependencies": {
"@sentry/node": "^5.19.1",
"aelf-block-scan": "^0.4.2",
"aelf-sdk": "^3.2.40",
"ali-rds": "^3.3.0",
"bluebird": "^3.5.5",
"cross-env": "^5.2.0",
"decimal.js": "^10.2.0",
"lodash": "^4.17.15",
"log4js": "^4.5.1",
"long": "^4.0.0",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"nodemailer": "^6.8.0",
"pm2": "^4.2.1",
"redis": "^2.8.0"
},
"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"
}
}
}