-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "databank",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=v22.11.0"
},
"scripts": {
"build": "env-cmd turbo run build",
"clean": "find . -type d '(' -name '.turbo' -o -name 'dist' -o -name 'node_modules' ')' -prune -exec rm -rf {} \\;",
"db:generate": "turbo run db:generate",
"dev": "turbo run dev",
"docker:db": "docker compose -f docker-compose.dev.yaml up -d",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky",
"test": "env-cmd turbo run test"
},
"devDependencies": {
"@databank/core": "workspace:*",
"@douglasneuroinformatics/eslint-config": "catalog:",
"@douglasneuroinformatics/prettier-config": "catalog:",
"@douglasneuroinformatics/tsconfig": "catalog:",
"@types/node": "^22.x",
"@vitest/coverage-v8": "^2.1.4",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.2.3",
"typescript": "5.5.x",
"vitest": "^2.1.4"
}
}