-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.62 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
{
"name": "helphone",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"workspaces": [
"server"
],
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:vite": "vite",
"dev:all": "node scripts/dev.mjs",
"server": "node --experimental-strip-types server/index.ts",
"start": "node --experimental-strip-types server/index.ts",
"start:all": "node scripts/dev.mjs",
"build": "vite build",
"build:all": "npm run build && npm run build --workspace server --if-present",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:update-snapshots": "vitest run -u",
"test:a11y": "vitest run test/a11y-components.test.jsx",
"test:e2e": "playwright test",
"test:e2e:a11y": "playwright test tests/e2e/a11y.spec.ts"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": "22.x"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.0.0",
"globals": "^17.11.0",
"husky": "^9.0.0",
"jest-axe": "^11.0.0",
"jest-canvas-mock": "^2.5.8",
"jsdom": "^29.1.1",
"lint-staged": "^15.0.0",
"msw": "^2.15.0",
"prettier": "^3.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"supertest": "^7.0.0",
"typescript": "^7.0.2",
"vite": "^8.0.16",
"vite-plugin-pwa": "^0.21.2",
"vitest": "^4.1.10"
},
"dependencies": {
"@aztec/bb.js": "^0.87.9",
"@creit-tech/stellar-wallets-kit": "^2.4.0",
"@noir-lang/noir_js": "^1.0.0-beta.9",
"@stellar/stellar-sdk": "^16.0.0",
"@supabase/supabase-js": "^2.108.2",
"@types/supercluster": "~7.1.3",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^8.6.2",
"i18next": "^25.3.2",
"mapbox-gl": "^3.25.0",
"morgan": "^1.11.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^15.5.3",
"react-map-gl": "^8.1.1",
"react-router-dom": "^7.18.0",
"supercluster": "~9.0.0"
}
}