-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "cc-epg",
"version": "0.1.5",
"description": "",
"scripts": {
"start": "ts-node index.tsx",
"prepare": "husky install"
},
"keywords": [],
"authors": [
"Joe Ipson <joe@ipson.me>"
],
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.1",
"@picocss/pico": "^2.0.6",
"axios": "^1.2.2",
"fast-xml-parser": "^4.5.0",
"fs-extra": "^10.0.0",
"hono": "^4.6.3",
"htmx-toaster": "^0.0.18",
"htmx.org": "^1.9.12",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.45",
"nedb-promises": "^5.0.1",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.174",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-plugin-sort-keys-custom-order-fix": "^0.1.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "2.3.2",
"ts-node": "^10.2.1",
"typed-htmx": "^0.3.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"!(slate/**).ts": [
"prettier --write",
"eslint --fix --format stylish"
]
}
}