-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 801 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 801 Bytes
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
{
"name": "h-os",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"typecheck": "tsc -b",
"build": "pnpm -r run build"
},
"lint-staged": {
"**/*.{js,ts,json}": [
"prettier --write",
"eslint"
]
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.1.0",
"@types/pg": "^8.16.0",
"eslint": "^9.x",
"eslint-config-prettier": "^9.x",
"eslint-plugin-prettier": "^5.x",
"husky": "^9.x",
"lint-staged": "^15.x",
"prettier": "^3.x",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"dotenv": "^17.2.3",
"pg": "^8.18.0",
"winston": "^3.19.0"
}
}