-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.23 KB
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
{
"name": "eduvault",
"version": "0.1.0",
"description": "Stellar-aligned educational content marketplace prototype for creator payments, licensing, and discovery.",
"license": "MIT",
"keywords": [
"stellar",
"soroban",
"education",
"creator-economy",
"marketplace",
"nextjs"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:all": "npm run test:contracts && npm run test:backend",
"test:contracts": "hardhat test",
"test:integration": "vitest run test/integration",
"test:backend": "node --test tests/backend/*.test.mjs",
"audit:deps": "npm audit --audit-level=critical",
"audit:deps:high": "npm audit --audit-level=high",
"audit:deps:critical": "npm audit --audit-level=critical",
"scan:secrets": "node scripts/scan-secrets.mjs",
"indexer:stellar": "node scripts/run-stellar-indexer.mjs",
"indexer:repair": "node scripts/repair-indexer-projections.mjs",
"clean:intents": "node scripts/clean-stale-intents.mjs",
"clean:intents:dry": "DRY_RUN=true node scripts/clean-stale-intents.mjs",
"test:migrations": "node --test tests/migrations/*.test.mjs",
"db:migrate": "node scripts/migrations/migrate-db.mjs",
"db:indexes": "node scripts/setup-db-indexes.js"
},
"dependencies": {
"@creit-tech/stellar-wallets-kit": "npm:@jsr/creit-tech__stellar-wallets-kit@^2.1.0",
"@openzeppelin/contracts": "^5.6.1",
"@pinata/sdk": "^2.1.0",
"@rainbow-me/rainbowkit": "^2.2.10",
"@react-native-async-storage/async-storage": "^3.0.2",
"@stellar/stellar-sdk": "^13.3.0",
"@tanstack/react-query": "^5.99.2",
"@vercel/blob": "^2.3.3",
"@web3modal/ethereum": "^2.7.1",
"@web3modal/wagmi": "^5.1.11",
"framer-motion": "^12.38.0",
"jsonwebtoken": "^9.0.3",
"mongodb": "^6.21.0",
"next": "^16.2.7",
"nodemailer": "^8.0.7",
"pinata": "^2.5.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-easy-crop": "^5.5.3",
"react-icons": "^5.6.0",
"redis": "^4.7.0",
"swagger-ui-react": "^5.32.6",
"viem": "^2.48.2",
"wagmi": "^2.19.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.1.2",
"@tailwindcss/postcss": "^4.2.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/coverage-v8": "^4.1.8",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"ethers": "^6.15.0",
"fast-check": "^4.9.0",
"hardhat": "^2.26.3",
"jest-axe": "^10.0.0",
"jsdom": "^29.0.2",
"tailwindcss": "^4.2.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"overrides": {
"undici": "^6.13.0",
"uuid": "^14.0.0",
"rpc-websockets": "^9.3.8",
"jayson": "^4.3.0",
"serialize-javascript": "^7.0.5",
"tmp": "^0.2.7",
"protobufjs": "^8.5.0",
"postcss": "^8.5.12",
"picomatch": "^4.0.4",
"minimatch": "^10.2.5",
"flatted": "^3.4.2",
"axios": "^1.16.1",
"bn.js": "^5.2.3",
"cookie": "^0.7.0"
}
}