-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.95 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@kycdao/widget",
"version": "0.6.20",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.umd.cjs",
"types": "dist",
"repository": {
"url": "https://github.com/kycdao/widget",
"type": "git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist/*",
"README.md",
"index.d.ts"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"install-precommit-hook": "husky install .husky",
"test": "vitest"
},
"dependencies": {
"@kycdao/kycdao-sdk": "0.6.22",
"agent-base": "^6.0.2",
"buffer": "^6.0.3",
"clsx": "^1.2.1",
"near-api-js": "^2.1.3",
"persona": "4.8.0-alpha",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-swipeable": "^7.0.0",
"react-twitter-embed": "^4.0.4",
"rxjs": "^7.8.0",
"stream": "^0.0.2",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rxjs": "^5.0.2",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"prettier": "^2.8.4",
"react-is": "^18.2.0",
"rollup-plugin-re": "^1.0.7",
"typescript": "^4.9.3",
"vite": "^4.3.8",
"vite-plugin-dts": "^2.0.2",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.8"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"styled-components": "^5"
},
"lint-staged": {
"*.{ts,tsx,scss}": [
"prettier --write",
"eslint"
],
"*.html": "prettier --write"
},
"dependenciesMeta": {
"@toruslabs/eccrypto": {
"built": false
},
"bigint-buffer": {
"built": false
},
"bufferutil": {
"built": false
},
"keccak": {
"built": false
},
"secp256k1": {
"built": false
},
"utf-8-validate": {
"built": false
}
},
"pnpm": {
"overrides": {
"nth-check": "^2.1.1",
"tar": "^6.1.13",
"@svgr/webpack": "^6.5.1",
"svgo": "^3.0.2",
"jest": "^29.4.3",
"jest-cli": "^29.4.3",
"core-js": "^3.28.0",
"bn.js": "^5.2.1"
}
}
}