-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 KB
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
{
"name": "web3auth-react",
"version": "0.1.0",
"description": "",
"main": "./lib/index.js",
"scripts": {
"dev": "webpack --config webpack.config.dev.js",
"build": "webpack --config webpack.config.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-path .gitignore",
"prettier:fix": "prettier --write \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-pattern node_modules/",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Think-and-Dev/web3auth-react.git"
},
"keywords": [
"web3auth",
"react",
"openlogin"
],
"author": "Think&Dev",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^17.0.2"
},
"dependencies": {
"@web3auth/base": "^4.0.0-alpha.0",
"@web3auth/ethereum-provider": "^4.0.0-alpha.0",
"@web3auth/modal": "^4.1.1-alpha.0",
"@web3auth/openlogin-adapter": "^4.0.0-alpha.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^18.2.0",
"stream-browserify": "^3.0.0",
"web3": "^1.8.1",
"web3-core": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@types/react": "^18.0.26",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "4.9.3",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}