-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 953 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
{
"name": "calculo",
"private": true,
"version": "0.0.0",
"description": "The infrastructure for calculations",
"scripts": {
"dev": "pnpm -r run dev",
"build": "pnpm -r run build",
"lint": "pnpm -r run lint",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"clean": "pnpm -r run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.8.1",
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.38.2",
"jose": "^5.9.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"turbo": "^2.3.3"
}
}