-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.11 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
{
"name": "peerx-web",
"version": "0.1.0",
"description": "PeerX — peer-to-peer crypto trading platform (waitlist, referrals, premium tier).",
"private": true,
"license": "MIT",
"homepage": "https://peerx.com",
"repository": {
"type": "git",
"url": "https://github.com/OpenPeerX/Peerx-Web.git"
},
"bugs": {
"url": "https://github.com/OpenPeerX/Peerx-Web/issues"
},
"keywords": [
"peerx",
"crypto",
"trading",
"waitlist",
"referral",
"nextjs",
"typescript"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"test": "node node_modules/jest/bin/jest.js --config jest.config.js",
"test:coverage": "node node_modules/jest/bin/jest.js --config jest.config.js --coverage",
"test:e2e": "node node_modules/@playwright/test/cli.js test"
},
"dependencies": {
"stripe": "^22.2.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@heroicons/react": "^2.2.0",
"@mui/material": "^9.0.0",
"@reduxjs/toolkit": "^2.11.2",
"better-sqlite3": "^11.10.0",
"next": "14.2.18",
"next-intl": "^4.9.1",
"qrcode.react": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"recharts": "^2.8.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.43.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.12",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.18",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"tailwindcss": "^4",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.10.2"
}
}