-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "webauthn-plugin-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=3001 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-types": "typechain --target ethers-v5 --out-dir src/utils/typechain-types 'src/utils/hardhat-artifacts/*.json'",
"postinstall": "sed -i.bak '/module/d' node_modules/@ethersproject/contracts/package.json"
},
"dependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@account-abstraction/sdk": "^0.6.0",
"@hexagon/base64": "^1.1.26",
"@peculiar/asn1-ecc": "^2.3.6",
"@peculiar/asn1-schema": "^2.3.6",
"@simplewebauthn/browser": "^7.2.0",
"@simplewebauthn/server": "^7.3.1",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"autoprefixer": "10.4.14",
"base64url": "^3.0.1",
"cbor-x": "^1.5.3",
"elliptic": "^6.5.4",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"ethers": "5.7.2",
"next": "13.4.5",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@simplewebauthn/typescript-types": "^7.0.0",
"@typechain/ethers-v5": "^11.0.0",
"@types/elliptic": "^6.4.14",
"@types/uuid": "^9.0.2",
"typechain": "^8.2.0"
}
}