-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.96 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
{
"name": "revyhubx",
"version": "0.1.0",
"private": true,
"scripts": {
"registry": "node scripts/generate-registry.mjs",
"predev": "npm run registry",
"dev": "next dev",
"prebuild": "npm run registry",
"build": "next build",
"start": "next start",
"prelint": "npm run registry",
"lint": "eslint .",
"pretest": "npm run registry",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"verify:features": "node scripts/verify-features.mjs",
"verify:issues": "node scripts/validate-issue-catalog.mjs",
"new:feature": "node scripts/new-feature.mjs",
"postinstall": "node scripts/generate-registry.mjs",
"check": "npm run lint && npm run test && npm run verify:features && npm run verify:issues && npm run build",
"issues": "node scripts/create-issues.mjs",
"issues:drips": "node scripts/create-issues.mjs --target drips"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "^16.2.10",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^20.17.14",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.11",
"autoprefixer": "^10.4.20",
"axe-core": "^4.13.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.10",
"jsdom": "^29.1.1",
"msw": "^2.15.0",
"postcss": "^8.5.19",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
},
"optionalDependencies": {
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@emnapi/wasi-threads": "1.2.3"
},
"overrides": {
"postcss": "^8.5.19"
}
}