-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "databank",
"type": "module",
"version": "0.0.1-beta.1",
"private": true,
"packageManager": "pnpm@10.7.1",
"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",
"knip": "knip",
"lint": "turbo run lint",
"postinstall": "turbo telemetry disable",
"prepare": "husky",
"start:test-server": "turbo run start:test-server",
"test": "NODE_ENV=test env-cmd vitest",
"test:coverage": "pnpm test --coverage"
},
"devDependencies": {
"@douglasneuroinformatics/eslint-config": "^5.3.2",
"@douglasneuroinformatics/prettier-config": "^0.0.2",
"@douglasneuroinformatics/tsconfig": "^1.0.3",
"@types/node": "^22.x",
"@vitest/coverage-v8": "^3.1.1",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^9.23.0",
"husky": "^9.1.7",
"knip": "^5.46.5",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.4.4",
"typescript": "5.6.x",
"vitest": "^3.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@import-meta-env/unplugin",
"@nestjs/core",
"@prisma/client",
"@prisma/engines",
"@swc/core",
"cypress",
"esbuild",
"nestjs-pino",
"mongodb-memory-server",
"prisma"
],
"ignoredBuiltDependencies": [
"@scarf/scarf"
]
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
]
}