-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "wallet-connector",
"version": "0.1.1",
"description": "Working Dead wallet connector package",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/The-Working-Dead/wallet-connector.git",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && rollup -c && tsc -d --emitDeclarationOnly --declarationDir dist",
"storybook": "start-storybook -p 6006 -s ./src",
"build-storybook": "build-storybook -s ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "yarn build && np"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
},
"dependencies": {
"@types/styled-components": "^5.1.4",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"cbor-web": "^9.0.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"styled-components": "^5.2.0",
"web3": "1.6.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-typescript": "^8.2.0",
"@storybook/addon-a11y": "^6.1.18",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.2.6",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"np": "^7.4.0",
"react-is": "^18.2.0",
"rollup": "^2.39.0",
"tsconfig-paths-webpack-plugin": "4.0.0",
"tslib": "^2.0.3",
"typescript": "^4.1.5"
}
}