-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "walletconnect-wizard",
"version": "0.1.0",
"description": "A React component to integrate WalletConnect and web3 wallets to your service easily",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"repository": "git@github.com:TokenMarketNet/walletconnect-wizard.git",
"author": "Rainer Koirikivi <rainer@koirikivi.fi>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"start": "start-storybook",
"analyze-bundle": "ANALYZE_BUNDLE=1 yarn build"
},
"devDependencies": {
"@storybook/addon-info": "^5.1.3",
"@storybook/react": "^5.1.3",
"@types/qr-image": "^3.2.1",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.16",
"awesome-typescript-loader": "^5.2.1",
"react-docgen-typescript-loader": "^3.1.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3"
},
"dependencies": {
"@walletconnect/browser": "1.0.0-beta.30",
"@walletconnect/qrcode-modal": "1.0.0-beta.30",
"@walletconnect/web3-provider": "1.0.0-beta.29",
"qr-image": "^3.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-svg-loader": "^3.0.3",
"styled-components": "^4.3.1",
"svg-inline-react": "^3.1.0"
}
}