-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "futarchy-api",
"module": "src/index.ts",
"type": "module",
"scripts": {
"prepare": "husky",
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"check:prettier": "prettier --check 'src/**/*.{ts,tsx}'",
"format:prettier": "prettier --write 'src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/pg": "^8.11.10",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/persistent-cache": "^1.1.3",
"body-parser": "^1.20.3",
"express": "^4.21.2",
"express-jwt": "^8.5.1",
"express-rate-limit": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.27.5",
"persistent-cache": "^1.1.2",
"pg": "^8.13.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-telegram-webhook": "^0.2.3",
"prettier": "^3.5.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"lint-staged": {
"*": "prettier -w \"**/*\" --ignore-unknown --cache"
}
}