-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.97 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
{
"name": "epiphany",
"license": "MIT",
"private": true,
"version": "2.6.2",
"description": "Everything happening in your world, on one screen. The map, the markets, the people.",
"keywords": [
"dashboard",
"finance",
"markets",
"map"
],
"type": "module",
"bin": {
"epiphany-tui": "cli/epiphany-tui.mjs"
},
"scripts": {
"tui": "node cli/epiphany-tui.mjs",
"dev": "vite",
"deploy": "wrangler deploy",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"shots": "bash ios/scripts/update_screenshots.sh",
"test:speed": "playwright test tests/speed.spec.js"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@upstash/redis": "^1.38.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"ink": "^7.1.0",
"lightweight-charts": "^5.1.0",
"linkedom": "^0.18.13",
"maplibre-gl": "^5.18.0",
"pdf-parse": "^1.1.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"recharts": "^3.6.0",
"resend": "^6.9.4",
"stripe": "^20.3.1",
"supercluster": "^8.0.1"
},
"overrides": {
"serialize-javascript": ">=7.0.4"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"playwright": "^1.58.0",
"terser": "^5.46.1",
"vite": "^7.2.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.5",
"wrangler": "^4.56.0"
},
"engines": {
"node": "22.x"
}
}