-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 758 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": "notes-app",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/desktop",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.1"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"packageManager": "npm@11.9.0",
"dependencies": {
"@types/node": "^22.19.15"
}
}