forked from layerx-labs/layerx-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 776 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 776 Bytes
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
{
"name": "example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html"
},
"browserslist": [
"last 2 Chrome versions"
],
"dependencies": {
"@sismo-core/zk-connect-client": "^0.0.2",
"@sismo-core/zk-connect-react": "^0.0.2",
"@taikai/dappkit": "^2.1.12",
"@taikai/rocket-kit": "^3.0.0",
"ethers": "^5.1.0",
"polished": "^4.2.2",
"react-app-polyfill": "^1.0.0",
"styled-components": "^5.3.9",
"web3-eth-contract": "^1.8.2"
},
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.8.4",
"parcel": "1.12.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^3.4.5"
}
}