-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "taskledger",
"version": "1.0.0",
"description": "A fundamentals-first Node.js + Express application featuring session-based authentication, SQLite persistence, and a minimal server-rendered dashboard for task management.",
"main": "index.js",
"type": "commonjs",
"volta": {
"node": "24.13.0",
"npm": "11.7.0"
},
"author": {
"name": "David Moriarty",
"url": "https://davidmoriarty.dev"
},
"license": "ISC",
"homepage": "https://davidmoriarty.dev/projects/taskledger",
"repository": {
"type": "git",
"url": "https://github.com/davidmoriarty/task-ledger"
},
"keywords": [
"node.js",
"express",
"ejs",
"css",
"sqlite"
],
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"db:init": "node scripts/init-db.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.3",
"ejs": "^4.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"session-file-store": "^1.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@flydotio/dockerfile": "^0.7.10",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"nodemon": "^3.1.11"
}
}