-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathpackage.json
114 lines (114 loc) · 3.13 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
107
108
109
110
111
112
113
114
{
"name": "react-moralis",
"version": "1.4.2",
"description": "Hooks and components to use Moralis in a React app",
"keywords": [
"moralis-v1",
"react",
"react-hooks",
"web3",
"ethereum",
"dapp",
"frontend",
"javascript",
"typescript",
"metamask"
],
"homepage": "https://github.com/MoralisWeb3/react-moralis",
"repository": {
"type": "git",
"url": "git+https://github.com/MoralisWeb3/react-moralis.git"
},
"bugs": {
"url": "https://github.com/MoralisWeb3/react-moralis/issues"
},
"license": "MIT",
"author": "Erno Wever <[email protected]>",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"engines": {
"node": ">=v12.22.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/prompt": "^15.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.5",
"babel-loader": "8.2.3",
"commitizen": "^4.2.4",
"dotenv": "^10.0.0",
"eslint": "8.5.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"moralis-v1": "^1.11.0",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-watch": "^4.3.1",
"semantic-release": "^18.0.1",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"moralis-v1": ">=1.11.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"prepublishOnly": "yarn run build",
"install:clean": "rm -rf node_modules && yarn install",
"lint": "eslint ./src",
"test": "jest",
"test:ci": "jest",
"lint:ci": "eslint --output-file eslint_report.json --format json ./src",
"commit": "npm run git-cz",
"format": "yarn prettier --write .",
"format:check": "yarn prettier --check .",
"tsc": "tsc",
"prepare": "husky install",
"pre-commit": "lint-staged",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{js,ts,html,css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"immer": "^9.0.7",
"use-immer": "^0.6.0"
}
}