-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
89 lines (89 loc) · 2.38 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
{
"name": "at11",
"description": "Daily lunch menu application",
"version": "2.0.0",
"dependencies": {
"applicationinsights": "^3.4.0",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"express": "^4.21.2",
"hbs": "^4.2.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/cheerio": "^0.22.35",
"@types/express": "^5.0.0",
"@types/hbs": "^4.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"lint": "tsc --noEmit && eslint .",
"pretest": "eslint .",
"test": "mocha ./dist/test --exit"
},
"author": {
"name": "Jakub Šturc",
"email": "jakub.sturc@erni.sk"
},
"contributors": [
{
"name": "Ján Neščivera",
"email": "jan.nescivera@erni.sk"
},
{
"name": "Matúš Brliť",
"email": "matus.brlit@erni.sk"
},
{
"name": "Peter Matejka",
"email": "peter.matejka@erni.sk"
},
{
"name": "Andrej Mandli",
"email": "andrej.mandli@erni.sk"
},
{
"name": "Marek Linka",
"email": "marek.linka@erni.sk"
},
{
"name": "Milos Karas",
"email": "caesar1987@centrum.sk"
},
{
"name": "Peter Václavek",
"email": "peter.vaclavek@erni.sk"
}
],
"keywords": [
"lunch",
"menu",
"at11",
"erni",
"obed"
],
"repository": {
"type": "git",
"url": "https://github.com/at11/at11.git"
},
"bugs": {
"url": "https://github.com/at11/at11/issues"
},
"license": "Unlicense",
"main": "app.js"
}