-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.18 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "culvers-ice-cream-ical",
"version": "1.0.0",
"description": "Generate a custom Culver's Flavor of the Day iCal feed.",
"keywords": [
"culver's",
"ice cream",
"flavor of the day",
"fod",
"ical"
],
"license": "MIT",
"author": {
"name": "Shawn Headrick",
"email": "shawn_headrick@yahoo.com",
"url": "https://github.com/IronManRust"
},
"homepage": "https://github.com/IronManRust/culvers-ice-cream-ical",
"repository": {
"type": "git",
"url": "https://github.com/IronManRust/culvers-ice-cream-ical.git"
},
"bugs": {
"url": "https://github.com/IronManRust/culvers-ice-cream-ical/issues",
"email": "shawn_headrick@yahoo.com"
},
"main": "dist/index.js",
"scripts": {
"generate-location-mapping": "node data/locationMapping.js",
"clean": "rimraf coverage dist",
"build": "npm run build:data && npm run build:static && npm run build:metadata && npm run build:src && npm run build:spec",
"build:data": "copyfiles -f data/locationMapping.json dist",
"build:static": "copyfiles -f static/*.* dist",
"build:metadata": "node package-metadata.js",
"build:src": "tsc -p tsconfig.json",
"build:spec": "node package-spec.js",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --detectOpenHandles --verbose",
"start": "node dist/index.js",
"all-the-things": "npm run clean && npm run build && npm run lint && npm run test"
},
"engines": {
"node": "22"
},
"devDependencies": {
"@types/html-escaper": "^3.0.2",
"@types/http-errors": "^2.0.4",
"@types/ical": "^0.8.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/pino": "^7.0.5",
"@types/rss": "^0.0.32",
"@types/to-json-schema": "^0.2.4",
"@types/zipcode-to-timezone": "^0.0.2",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@fastify/static": "^8.0.2",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"axios": "^1.7.7",
"fastify": "^5.1.0",
"html-escaper": "^3.0.3",
"http-errors": "^2.0.0",
"http-status-codes": "^2.3.0",
"ical-generator": "^8.0.1",
"node-cache": "^5.1.2",
"node-html-parser": "^6.1.13",
"p-all": "^2.1.0",
"p-retry": "^4.6.2",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"postal-codes-js": "^2.5.2",
"rss": "^1.2.2",
"timezone-support": "^3.1.0",
"to-json-schema": "^0.2.5",
"uuid-by-string": "^4.0.0",
"xml-formatter": "^3.6.3",
"zipcode-to-timezone": "^0.0.9"
}
}