forked from Ogstevyn/payeasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "payeasy",
"version": "1.0.0",
"private": true,
"description": "Blockchain-powered rent sharing for roommates. Find roommates, split rent, and pay securely through Stellar escrow.",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"size": "size-limit",
"test": "node --test --experimental-strip-types --experimental-test-module-mocks",
"test:coverage": "node --test --experimental-strip-types --experimental-test-module-mocks --experimental-test-coverage"
},
"dependencies": {
"@sentry/nextjs": "^10.55.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.6.1",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-virtual": "^3.13.26",
"@types/bcryptjs": "^2.4.6",
"@upstash/redis": "^1.37.0",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.0",
"framer-motion": "^11.18.2",
"jose": "^6.2.3",
"lucide-react": "^0.400.0",
"next": "^14.2.0",
"next-auth": "^4.24.14",
"next-themes": "^0.4.6",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.183.2",
"web-push": "^3.6.7"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.0",
"@size-limit/file": "^11.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.183.1",
"@types/web-push": "^3.6.4",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.2.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jsdom": "^27.0.1",
"lint-staged": "^17.0.5",
"postcss": "^8.4.0",
"size-limit": "^11.0.0",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"vitest": "^4.1.2"
}
}