-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "continuum",
"version": "0.1.0",
"private": false,
"description": "A fast, local-first envelope budgeting app. Your money, your device, your rules.",
"type": "module",
"author": "Continuum Contributors",
"license": "MIT",
"homepage": "https://continuum-memory.xyz/",
"repository": {
"type": "git",
"url": "https://continuum-memory.xyz/.git"
},
"keywords": [
"budgeting",
"envelope-budgeting",
"personal-finance",
"local-first",
"open-source",
"react",
"typescript",
"pwa"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"lucide-react": "^0.447.0",
"date-fns": "^3.6.0",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.4",
"framer-motion": "^11.11.11",
"recharts": "^2.13.3",
"idb": "^8.0.0"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.21.1"
}
}