-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "nightlio",
"private": true,
"version": "0.1.7",
"type": "module",
"description": "A beautiful, self-hosted daily mood tracker and journal",
"author": "shirsakm",
"license": "MIT",
"homepage": "https://github.com/shirsakm/nightlio",
"repository": {
"type": "git",
"url": "https://github.com/shirsakm/nightlio.git"
},
"bugs": {
"url": "https://github.com/shirsakm/nightlio/issues"
},
"keywords": [
"mood-tracker",
"journal",
"self-hosted",
"privacy",
"react",
"flask",
"docker"
],
"scripts": {
"dev": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=768' vite build",
"lint": "eslint .",
"preview": "vite preview",
"api": "cd api && python3 -m venv venv && venv/bin/pip install -r requirements.txt && venv/bin/flask run --no-debugger",
"api:dev": "cd api && venv/bin/python start.py",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"setup": "./setup.sh",
"test": "./test.sh"
},
"dependencies": {
"@mdxeditor/editor": "^3.11.6",
"@tanstack/react-query": "^5.85.3",
"lucide-react": "^0.460.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^7.9.6",
"recharts": "^2.12.7"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"rollup-plugin-visualizer": "^6.0.5",
"vite": "^7.1.0"
}
}