-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "analysis-runner-local",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"lint": "tsc --noEmit && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json,astro}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"@hono/node-server": "^1.11.4",
"@hono/zod-validator": "^0.2.2",
"better-queue": "^3.8.12",
"better-queue-sql": "^1.0.6",
"cyanoacrylate": "^1.2.0",
"execa": "^9.2.0",
"fs-extra": "^11.2.0",
"hono": "^4.4.7",
"nanoid": "^5.0.7",
"package-up": "^5.0.0",
"sqlite3": "^5.1.7",
"tempy": "^3.1.0",
"trackhar": "^0.5.1",
"winston": "^3.13.0",
"winston-console-format": "^1.0.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@baltpeter/eslint-config": "^2.2.0",
"@baltpeter/prettier-config": "^3.0.0",
"@types/better-queue": "^3.8.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "8.43.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"husky": "4.3.7",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsx": "^4.7.1",
"typescript": "5.1.6"
},
"engines": {
"node": "~18"
}
}