-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 760 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 760 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
{
"name": "blindpass",
"version": "0.11.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"build": "turbo run build",
"dev": "docker compose up -d && turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci": "pnpm lint && pnpm tsc -b && pnpm format:check && pnpm test"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"prettier": "^3.8.3",
"turbo": "^2.9.8",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}