-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 842 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 842 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
{
"name": "AgentOS",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"fix": "turbo run lint -- --fix && prettier --write \"**/*.{ts,tsx,md}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"check-types": "turbo run check-types",
"test": "turbo run test",
"prepare": "husky install"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@vitest/coverage-v8": "^2.0.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"supertest": "^7.0.0",
"turbo": "^2.8.17",
"typescript": "5.9.2",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.3",
"workspaces": [
"apps/*",
"services/*",
"packages/*"
]
}