-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.57 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
{
"name": "microstream",
"version": "1.0.0",
"description": "Privacy-First Micro-Subscriptions on XRPL",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "cd server && node index.js",
"dev": "concurrently \"npm run server\" \"npm start\"",
"deploy:aws": "aws s3 sync build/ s3://microstream-app --delete",
"deploy:gcp": "gcloud app deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@prisma/client": "^6.11.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.83.0",
"@types/express-session": "^1.18.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"buffer": "^6.0.3",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"express": "^5.1.0",
"framer-motion": "^12.23.3",
"helmet": "^8.1.0",
"ipfs-http-client": "^60.0.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.525.0",
"morgan": "^1.10.0",
"next.js": "^1.0.3",
"nft.storage": "^7.2.0",
"prisma": "^6.11.1",
"qrcode": "^1.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-qr-code": "^2.0.18",
"react-scripts": "5.0.1",
"ripple-lib": "^1.10.1",
"stripe": "^18.3.0",
"typescript": "^5.8.3",
"universal-cookie": "^8.0.1",
"web3.storage": "^4.5.5",
"ws": "^8.18.3",
"xrpl": "^4.3.0",
"xrpl-client": "^2.4.0",
"xumm": "^1.8.0",
"xumm-oauth2-pkce": "^2.8.7",
"xumm-sdk": "^1.11.2",
"zod": "^4.0.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}