-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
{
"name": "@sr-net/siege",
"version": "1.0.0",
"author": "BeeeQueue",
"type": "module",
"private": true,
"repository": {
"type": "github",
"url": "sr-net/siege"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": "^22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,json,yml}": [
"prettier --write"
]
},
"imports": {
"#r/*": "./src/*",
"#dbschema/*.ts": "./dbschema/*.ts"
},
"scripts": {
"dev": "node --experimental-strip-types --watch --env-file .env src/index.ts",
"db:reset": "nu scripts/db-reset.nu",
"docker:build": "docker build . --tag siege",
"docker:prune": "docker image prune --force",
"docker:run": "docker run --rm --name siege -p 3000:3000 siege",
"gen": "npx @edgedb/generate interfaces",
"lint": "eslint 'src/**/*.ts'",
"postinstall": "simple-git-hooks",
"snapshot": "node --experimental-strip-types src/index.ts -shot",
"start": "node --experimental-strip-types src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit -P tsconfig.json"
},
"resolutions": {
"esbuild": "0.24.2"
},
"dependencies": {
"@gqloom/valibot": "0.6.1",
"@hono/graphql-server": "0.5.1",
"@hono/node-server": "1.13.7",
"edgedb": "1.5.12",
"graphql": "16.10.0",
"hono": "4.6.15",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"ts-dedent": "2.2.0",
"valibot": "1.0.0-beta.9"
},
"devDependencies": {
"@antfu/eslint-config": "3.12.1",
"@edgedb/generate": "0.5.6",
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.10.4",
"eslint": "9.17.0",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2",
"vite": "6.0.9",
"vitest": "3.0.0-beta.3"
},
"pnpm": {
"overrides": {
"@eslint/markdown": "-",
"@stylistic/eslint-plugin": "-",
"eslint-plugin-jsonc": "-",
"eslint-plugin-toml": "-",
"eslint-plugin-vue": "-",
"eslint-processor-vue-blocks": "-",
"eslint-plugin-yml": "-",
"jsonc-eslint-parser": "-",
"toml-eslint-parser": "-",
"yaml-eslint-parser": "-",
"is-core-module": "npm:@nolyfill/is-core-module@^1"
}
}
}