-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 801 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 801 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
{
"name": "manamesh",
"private": true,
"packageManager": "yarn@4.6.0",
"workspaces": [
"packages/*",
"vendor/*"
],
"resolutions": {
"@tanstack/query-core": "^5.50.0"
},
"scripts": {
"dev:frontend": "yarn workspace @manamesh/frontend dev",
"dev:backend": "yarn workspace @manamesh/backend dev",
"build": "yarn workspace @manamesh/frontend build",
"build:all": "yarn workspaces foreach --all run build",
"test": "yarn workspace @manamesh/frontend test",
"test:all": "yarn workspaces foreach --all run test"
},
"devDependencies": {
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}