-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.28 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
{
"type": "module",
"private": true,
"scripts": {
"build-all": "tsx models/build.ts",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"logs": "wrangler tail",
"top-models": "tsx models/top.ts",
"type-check": "tsc --noEmit",
"update-models": "tsx models/update.ts"
},
"dependencies": {
"@types/node": "^20.10.4",
"hono": "^4.5.8",
"p-queue": "^7.4.1",
"posthog-node": "^3.2.0",
"prettier-plugin-astro": "^0.12.2",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^8.0.1",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-pkg": "^0.18.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"wrangler": "^3.19.0"
},
"sideEffects": false,
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}