forked from moshmage/dappkit-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.13 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
{
"name": "@taikai/dappkit-react",
"version": "0.1.8",
"scripts": {
"pre:bundle": "rimraf dist/",
":bundle": "tsc",
"test": "jest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@taikai/dappkit": "^2.3.1",
"@web3-react/coinbase-wallet": "^8.2.3",
"@web3-react/core": "^8.2.3",
"@web3-react/gnosis-safe": "^8.2.4",
"@web3-react/metamask": "^8.2.4",
"@web3-react/walletconnect-v2": "^8.5.1",
"ts-jest": "^29.1.1",
"zustand": "^4.4.6"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^27.5.2",
"@types/react": "^18.2.37",
"babel-jest": "^29.7.0",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^4.9.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.MD"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageProvider": "v8",
"coverageReporters": [
"text",
"html"
],
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"watch": false,
"watchAll": false,
"transform": {
"\\.tsx?$": "ts-jest"
}
},
"license": "MIT"
}