-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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": "devjournal",
"version": "0.2.0",
"description": "A daily developer journal that syncs to FreshBooks and generates markdown-formatted scrum notes",
"keywords": [
"developers",
"journal",
"freshbooks",
"scrum"
],
"homepage": "https://github.com/tforster/devjournal#readme",
"bugs": {
"url": "https://github.com/tforster/devjournal/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tforster/devjournal.git"
},
"license": "MIT",
"author": "Troy Forster",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "./devops/dev.sh",
"test": "./devops/test.sh",
"lint": "eslint ."
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260207.0",
"@eslint/compat": "^2.0.2",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.17.0",
"@eslint/json": "^1.0.0",
"@eslint/markdown": "^7.5.1",
"@html-eslint/eslint-plugin": "^0.54.2",
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^3.1.2",
"prettier": "^3.8.1",
"wrangler": "^4.63.0"
},
"dependencies": {
"@tsndr/cloudflare-worker-jwt": "^3.2.1",
"itty-router": "^5.0.22",
"marked": "^17.0.1"
}
}