-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "token-gating-sdk",
"version": "1.3.7",
"description": "A token gating SDK to restrict access to Next and React Application for NFT and Token Holders",
"main": "dist/esm/index.js",
"types": "./dist/index.d.ts",
"import": "dist/esm/index.js",
"type": "module",
"files": [
"dist"
],
"keywords": [
"Token-Gating",
"NFT-Gating",
"Ethereum",
"Polygon",
"Alchemy"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "rm -rf dist/ && rollup -c --bundleConfigAsCjs",
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs"
},
"author": "Dhruv Agarwal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dhruv-2003/token-gating-tool"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@swc/core": "^1.3.37",
"@types/react": "^18.0.28",
"@types/styled-components": "^5.1.26",
"rollup": "^3.17.3",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.5.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@rainbow-me/rainbowkit": "^0.11.0",
"alchemy-sdk": "^2.5.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"next": "^13.2.2",
"react": "^18.2.0",
"react-router-dom": "^6.8.2",
"styled-components": "^5.3.8",
"wagmi": "^0.11.7"
},
"peerDependencies": {
"next": "^13.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2"
}
}