forked from hellovickytian/resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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
{
"name": "prochain-resolver",
"version": "0.1.0",
"description": "prochain resolver",
"license": "MIT",
"repository": "git@github.com:eunchurn/prochain-resolver.git",
"main": "dist/index.js",
"author": {
"name": "prochain",
"email": "chain.pro@gmail.com",
"url": "https::chain.pro"
},
"files": [
"dist",
"src"
],
"scripts": {
"start": "nodemon -r dotenv/config --exec babel-node ./src/index.js dotenv_config_path=.env.development",
"serve": "node -r dotenv/config ./dist/index.js dotenv_config_path=.env.production",
"stage": "node -r dotenv/config ./dist/index.js dotenv_config_path=.env.stage",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"flow": "flow",
"flow:check": "flow check ./src",
"flow:install": "flow-typed install",
"clean": "rimraf dist",
"flow:build": "flow-copy-source src dist",
"prebuild": "rimraf dist && npm run flow:build",
"build": "babel src -d dist",
"prerelease": "npm run lint && npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags",
"tree": "tree -a -I 'node_modules|.git'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"nodejs",
"babel",
"boilerplate"
],
"dependencies": {
"@polkadot/api": "^1.19.0-beta.3",
"@polkadot/keyring": "^2.13.1",
"@polkadot/util": "^2.13.1",
"@polkadot/util-crypto": "^2.13.1",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"connect-multiparty": "^2.2.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"kafkajs": "^1.11.0",
"libs": "^0.1.2",
"log4js": "^6.1.0",
"nedb": "^1.8.0",
"node-schedule": "^1.3.2",
"request-promise": "^4.2.5",
"socket.io": "^2.3.0",
"wxcrypt": "^1.4.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-flow": "7.7.4",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-flowtype-errors": "4.1.0",
"eslint-plugin-import": "^2.19.1",
"flow-bin": "^0.114.0",
"flow-copy-source": "^2.0.9",
"flow-typed": "^2.6.2",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"open-cli": "5.0.0",
"rimraf": "3.0.0",
"standard-version": "7.0.1"
}
}