-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "bucket",
"version": "0.1.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 1",
"mint-and-register": "npx ts-node ./scripts/simpleMintAndRegister.ts",
"mint-and-register-spg": "npx ts-node ./scripts/simpleMintAndRegisterSpg.ts",
"register-deriv-non-com": "npx ts-node ./scripts/registerDerivativeNonCommercial.ts",
"register-deriv-com": "npx ts-node ./scripts/registerDerivativeCommercial.ts",
"create-spg-collection": "npx ts-node ./scripts/utils/createSpgNftCollection.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@dynamic-labs/ethereum": "^3.4.2",
"@dynamic-labs/sdk-react-core": "^3.4.2",
"@dynamic-labs/wagmi-connector": "^3.4.2",
"@pinata/sdk": "^2.1.0",
"@story-protocol/core-sdk": "^1.1.0-stable",
"@story-protocol/react-sdk": "^1.1.0-stable",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.6",
"@tanstack/react-query": "^5.59.15",
"next": "14.2.15",
"react": "^18",
"react-dom": "^18",
"ts-node": "^10.9.2",
"viem": "^2.21.29",
"wagmi": "^2.12.20"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}