-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 KB
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
{
"name": "hivemind",
"version": "0.2.0",
"description": "hivemind api",
"author": "Sam Panter <sam@flowercomputer.com>",
"scripts": {
"build": "rm -rf ./dist && tsx scripts/build.ts",
"start": "node dist/server/index.js",
"dev": "tsx watch src/server/index.ts | pino-pretty",
"format": "prettier --write .",
"format:ci": "prettier src --check",
"lint": "eslint --fix",
"lint:ci": "eslint",
"cleandeps": "depcheck --json | jq -r '.dependencies[]' | xargs -r pnpm uninstall",
"fixall": "pnpm run lint && pnpm run format && pnpm run cleandeps",
"type:check": "tsc --noEmit"
},
"engines": {
"node": ">=25.5.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.12.3",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@fastify/autoload": "6.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.0.0",
"@fastify/type-provider-typebox": "5.0.1",
"@sinclair/typebox": "0.33.22",
"env-schema": "^6.0.1",
"fastify": "5.1.0"
},
"devDependencies": {
"@eslint/compat": "1.2.2",
"@eslint/js": "9.14.0",
"@tsconfig/node22": "22.0.0",
"@types/node": "22.9.0",
"depcheck": "^1.4.7",
"eslint": "9.14.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "56.0.0",
"globals": "15.12.0",
"lint-staged": "15.2.10",
"pino-pretty": "11.3.0",
"prettier": "3.3.3",
"resolve-tspaths": "^0.8.23",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "8.13.0"
}
}