forked from NoahSaso/cosmodal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.11 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
{
"name": "@noahsaso/cosmodal",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/NoahSaso/cosmodal.git"
},
"author": "Noah Saso",
"license": "ISC",
"bugs": {
"url": "https://github.com/NoahSaso/cosmodal/issues"
},
"homepage": "https://github.com/NoahSaso/cosmodal#readme",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf node_modules dist",
"build": "tsc",
"build:webpack": "webpack",
"build:webpack:stats": "webpack --json > webpack_stats.json",
"build:webpack:analyze": "webpack-bundle-analyzer webpack_stats.json dist",
"start": "yarn build && cd example && yarn bootstrap",
"lint": "eslint .",
"format": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "0.28.10",
"@cosmjs/stargate": "0.28.10",
"@keplr-wallet/common": "^0.9.10",
"@keplr-wallet/cosmos": "^0.9.16",
"@keplr-wallet/provider": "^0.9.12",
"@keplr-wallet/stores": "^0.10.5",
"@walletconnect/client": "^1.7.8",
"@walletconnect/utils": "^1.7.8",
"core-js": "3",
"qrcode.react": "^3.0.2",
"react-modal": "^3.15.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.17.12",
"@babel/register": "^7.17.7",
"@cosmjs/launchpad": "0.27.1",
"@cosmjs/proto-signing": "0.28.10",
"@keplr-wallet/types": "^0.10.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.3",
"@types/node": "^16.7.13",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@walletconnect/types": "^1.7.8",
"autoprefixer": "^10.4.4",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"path-browserify": "^1.0.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"secretjs": "^0.17.5",
"stream-browserify": "^3.0.0",
"ts-jest": "^28.0.5",
"ts-loader": "^9.2.8",
"typescript": "^4.4.2",
"url-loader": "^4.1.1",
"webpack": "^5.64.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
}
}