-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 860 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": "show-sync",
"scripts": {
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"test": "turbo run test:ci --concurrency 5",
"lint": "turbo run lint --concurrency 5",
"lint:fix": "turbo run lint:fix"
},
"devDependencies": {
"@stylistic/eslint-plugin": "5.5.0",
"@types/node": "24.10.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-perfectionist": "4.15.1",
"prettier": "3.6.2",
"turbo": "2.6.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.4",
"vitest": "4.0.8"
},
"volta": {
"node": "24.11.1",
"npm": "11.6.1"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"workspaces": [
"apps/*"
],
"packageManager": "npm@11.6.2",
"dependencies": {
"drizzle-kit": "0.31.6",
"drizzle-orm": "0.44.7"
}
}