-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 965 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
{
"name": "noteleaf",
"version": "1.0.0",
"private": true,
"description": "Noteleaf monorepo — ambient local notetaker",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test": "turbo run test",
"verify": "npm run type-check && npm run lint && npm run test && npm run build",
"db:migrate:prod": "npm run db:migrate:prod -w @noteleaf/api",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"turbo": "^2.9.12",
"prettier": "^3.4.2",
"eslint": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"typescript-eslint": "^8.60.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@11.11.1"
}