-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
{
"private": true,
"name": "ka-mensa-api",
"version": "0.0.0",
"description": "Karlsruhe (KIT) Mensa API server",
"type": "module",
"main": "dist/server.js",
"scripts": {
"start": "npm run build && npm run production",
"build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
"production": "node dist/server.js",
"lint": "tsc --noEmit -p tsconfig.lint.json && eslint .",
"lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix .",
"coverage": "c8 --reporter=lcov --reporter=text --all --src=src npm test",
"test": "mocha --require tsx --recursive \"test/**/*.test.*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/meyfa/ka-mensa-api.git"
},
"keywords": [
"karlsruhe",
"mensa",
"canteen",
"api-server"
],
"author": "Fabian Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/meyfa/ka-mensa-api/issues"
},
"homepage": "https://github.com/meyfa/ka-mensa-api",
"engines": {
"node": ">=18.16.1"
},
"dependencies": {
"@fastify/cors": "10.0.1",
"fastify": "5.1.0",
"fs-adapters": "7.0.2",
"group-items": "4.0.0",
"ka-mensa-fetch": "4.0.4",
"moment": "2.30.1",
"ms": "2.1.3",
"omniwheel": "0.4.2",
"winston": "3.15.0"
},
"devDependencies": {
"@meyfa/eslint-config": "8.0.0",
"@types/mocha": "10.0.9",
"@types/ms": "0.7.34",
"@types/node": "22.9.0",
"c8": "10.1.2",
"eslint": "9.14.0",
"mocha": "10.8.2",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}