-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "ankomster",
"version": "0.0.1",
"author": "Walter Berggren",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.6.0",
"compression": "^1.7.4",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"ejs": "^3.1.10",
"express": "^5.0.0",
"got": "^12.5.3",
"pino": "^8.14.1",
"pino-http": "^8.3.3",
"zod": "^3.21.4"
},
"scripts": {
"build": "tsc",
"build:image": "docker build -t thesauri/ankomster .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:write": "eslint --fix .",
"push:image": "docker push thesauri/ankomster",
"start": "node build/app.js",
"start:dev": "tsc-watch --onSuccess \"node build/app.js\""
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/better-sqlite3": "^7.6.12",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"prettier": "3.4.2",
"tsc-alias": "^1.8.7",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6",
"typescript-eslint": "^8.18.1"
}
}