-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "honotype",
"author": "Sasha Zmts",
"scripts": {
"watch:api-main": "nodemon --exec 'npm run lint && npm run typecheck && tsx apps/api-main/main.ts'",
"start:api-main": "node dist/apps/api-main/main.js",
"prebuild": "npm run typecheck && rm -rf ./dist",
"build": "tsc && tsc-alias",
"typecheck": "tsc --noEmit",
"lint": "eslint \"{apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{apps,libs,test}/**/*.ts\" --fix",
"migrations:api-main": "node dist/apps/api-main/main.js --migrations"
},
"dependencies": {
"@hono/node-server": "1.19.12",
"@hono/oauth-providers": "0.8.5",
"argon2": "0.44.0",
"dotenv": "17.3.1",
"drizzle-orm": "0.45.1",
"hono": "4.12.10",
"jsonwebtoken": "9.0.3",
"ms": "2.1.3",
"pg": "8.20.0",
"uuid": "13.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@types/jsonwebtoken": "9.0.8",
"@types/node": "22.13.1",
"@types/pg": "8.11.11",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "64.0.0",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.4.0",
"knex": "3.2.8",
"nodemon": "3.1.14",
"prettier": "3.8.1",
"tsc-alias": "1.8.16",
"tsx": "4.21.0",
"typescript": "5.7.3"
}
}