forked from web3ui/web3uikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.45 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
{
"name": "web3uikit",
"version": "0.1.118",
"repository": "https://github.com/web3ui/web3uikit",
"homepage": "https://web3ui.github.io/web3uikit/",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"browser": {
"http": false,
"https": false,
"os": false,
"stream": false,
"crypto": false
},
"scripts": {
"analyze": "size-limit --why",
"build-storybook": "build-storybook",
"build": "tsdx build",
"deploy:docs": "gh-pages -d storybook-static",
"format": "npm run lint:fix && npm run prettier:fix",
"lint:check": "eslint .",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,json,html}\" .prettierrc --config ./.prettierrc",
"size": "size-limit",
"start": "tsdx watch",
"storybook": "start-storybook -p 6006",
"test": "tsdx test"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@storybook/theming": "^6.4.19",
"@walletconnect/web3-provider": "^1.7.1",
"@web3auth/web3auth": "^0.3.2",
"moralis": "^1.3.2",
"react-blockies": "^1.4.1",
"react-moralis": "^1.3.1",
"react-router-dom": "^6.2.1",
"styled-components": "^5.3.3",
"web3uikit": "^0.1.118"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"trailingComma": "all",
"singleQuote": true,
"semi": true,
"quoteProps": "consistent"
},
"module": "dist/web3uikit.esm.js",
"size-limit": [
{
"path": "dist/web3uikit.cjs.production.min.js"
},
{
"path": "dist/web3uikit.esm.js"
}
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@size-limit/preset-small-lib": "^7.0.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.9",
"@storybook/addons": "^6.4.19",
"@storybook/react": "^6.4.9",
"@storybook/testing-react": "^1.2.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/blockies": "^0.0.2",
"@types/react": "^17.0.38",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-loader": "^8.2.3",
"cssjson": "^2.1.3",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"husky": "^7.0.4",
"jest-styled-components": "^7.0.8",
"jest-svg-transformer": "^1.0.0",
"postcss": "^8.4.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup-plugin-inline-svg": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^7.0.5",
"styled-components": "^5.3.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}