-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.81 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
{
"name": "typechain-target-web3-rxjs",
"version": "0.1.28",
"description": "Package for connecting with Ethereum wallets for dApp",
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"scripts": {
"node": "node --max_old_space_size=4096 ./node_modules/.bin/cross-env TS_NODE_PROJECT=\"webpack/tsconfig.json\"",
"build": "npm run node -- webpack --config webpack/prod.ts",
"test": "yarn codegen && yarn lint && jest",
"codegen": "rm -rf ./src/test/generated/ && yarn build && yarn typechain --target=./lib/index.js --out-dir ./src/test/generated/ './src/test/**/*.json'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tsc --noEmit --pretty --incremental false",
"lint:autofix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/akropolisio/typechain-target-web3-rxjs.git"
},
"keywords": [
"web3",
"rxjs",
"typechain-target"
],
"author": "Dmitriy Serdtsev",
"license": "MIT",
"bugs": {
"url": "https://github.com/akropolisio/typechain-target-web3-rxjs/issues"
},
"homepage": "https://github.com/akropolisio/typechain-target-web3-rxjs#readme",
"files": [
"lib",
"src"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.7.11",
"@types/webpack": "^4.41.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"bn.js": "^5.0.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.28",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.1.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rxjs": "^6.2.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.2",
"ts-toolbelt": "^4.10.7",
"tsconfig-paths": "^3.9.0",
"typechain": "^6.0.5",
"typescript": "^3.7.2",
"uglify-js": "^3.6.8",
"web3": "^1.5.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"typechain": "^6.0.5"
},
"dependencies": {}
}