-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.56 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"name": "nao-chat",
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "npm-run-all -lp dev:backend dev:frontend dev:fastapi",
"dev:backend": "npm run dev -w @nao/backend",
"dev:fastapi": "npm run fastapi -w @nao/backend",
"dev:frontend": "npm run dev -w @nao/frontend",
"lint": "npm-run-all -lp lint:backend lint:frontend lint:shared",
"lint:backend": "npm run lint -w @nao/backend",
"lint:frontend": "npm run lint -w @nao/frontend",
"lint:shared": "npm run lint -w @nao/shared",
"lint:fix": "npm-run-all -lp lint:fix:backend lint:fix:frontend lint:fix:shared",
"lint:fix:backend": "npm run lint:fix -w @nao/backend",
"lint:fix:frontend": "npm run lint:fix -w @nao/frontend",
"lint:fix:shared": "npm run lint:fix -w @nao/shared",
"format": "prettier --write .",
"format:check": "prettier --check .",
"cli:fix": "cd cli && make lint-fix",
"cli:check": "cd cli && make lint",
"build:cli": "cd cli && python build.py -f",
"setup": "cd scripts && ./setup.sh",
"release": "./scripts/release.sh",
"prepare": "husky",
"pg:start": "docker compose -f docker-compose.postgres.yml up -d",
"pg:stop": "docker compose -f docker-compose.postgres.yml stop",
"pg:reset": "docker compose -f docker-compose.postgres.yml down -v"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"typescript-eslint": "^8.51.0"
},
"dependencies": {
"@boxlite-ai/boxlite": "^0.3.0",
"@pydantic/monty": "^0.0.7",
"depd": "^2.0.0"
}
}