forked from Obiajulu-gif/eduvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"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": "npm run test:contracts && npm run test:backend",
"test:contracts": "hardhat test",
"test:backend": "node --test tests/backend/*.test.mjs",
"audit:deps": "npm audit --audit-level=high",
"scan:secrets": "node scripts/scan-secrets.mjs",
"indexer:stellar": "node scripts/run-stellar-indexer.mjs"
},
"dependencies": {
"@creit-tech/stellar-wallets-kit": "npm:@jsr/creit-tech__stellar-wallets-kit@^2.1.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@stellar/stellar-sdk": "^13.3.0",
"@openzeppelin/contracts": "^5.6.1",
"@rainbow-me/rainbowkit": "^2.2.10",
"@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.4",
"nodemailer": "^7.0.13",
"pinata": "^2.5.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.6.0"
},
"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",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"jest-axe": "^10.0.0",
"jsdom": "^29.0.2",
"ethers": "^6.15.0",
"hardhat": "^2.26.3",
"tailwindcss": "^4.2.3",
"vitest": "^4.1.5"
}
}