-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 983 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
39
{
"name": "devin",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"prepare": "husky",
"schema": "cd packages/drizzle && bunx drizzle-lab@latest visualizer",
"migrate": "cd packages/drizzle && bun run migrate",
"studio": "cd packages/drizzle && bunx drizzle-kit studio"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.18",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.3",
"workspaces": [
"apps/*",
"packages/*",
"packages/api/*",
"packages/services/*",
"tooling/*",
"tests/*"
],
"dependencies": {
"lint-staged": "^17.0.7"
}
}