-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "minori",
"version": "0.1.0",
"description": "Agricultural AI collaboration platform — enabling farmers to record through voice while AI predicts harvest timing and yields",
"private": true,
"type": "module",
"packageManager": "bun@1.3.5",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "turbo test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"prepare": "husky",
"db:generate": "bun --cwd packages/database run db:generate",
"db:migrate": "bun --cwd packages/database run db:migrate",
"db:push": "bun --cwd packages/database run db:push",
"db:studio": "bun --cwd packages/database run db:studio"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "^1.1.14",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.51.0"
}
}