forked from stelis-dev/stelis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 2.05 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
{
"name": "stelis",
"private": true,
"type": "module",
"workspaces": [
"packages/contracts",
"packages/core-relay",
"packages/core-api",
"packages/sdk",
"packages/app-api",
"packages/app-web",
"packages/app-admin",
"packages/mcp-server"
],
"scripts": {
"build": "npm run build -w @stelis/contracts && npm run build -w @stelis/core-relay && npm run build -w @stelis/core-api && npm run build -w @stelis/sdk && npm run build -w @stelis/app-api && npm run build:app-web && npm run build:app-admin && npm run build -w @stelis/mcp-server",
"build:app-api:deploy": "npm run build -w @stelis/contracts && npm run build -w @stelis/core-relay && npm run build -w @stelis/core-api && npm run build -w @stelis/app-api",
"build:app-web": "npm run build -w @stelis/app-web",
"build:app-admin": "npm run build -w @stelis/app-admin",
"dev:app-api": "node scripts/dev-app-api.mjs",
"dev:app-web": "npm run dev -w @stelis/app-web",
"dev:app-admin": "npm run dev -w @stelis/app-admin",
"lint": "eslint 'packages/*/src/**/*.ts' 'packages/*/tests/**/*.ts' && node scripts/check-prepare-stage-schema.mjs && node scripts/check-package-boundaries.mjs",
"lint:fix": "eslint --fix 'packages/*/src/**/*.ts' 'packages/*/tests/**/*.ts'",
"format": "prettier --write 'packages/*/src/**/*.{ts,tsx}' 'packages/*/tests/**/*.ts'",
"format:check": "prettier --check 'packages/*/src/**/*.{ts,tsx}' 'packages/*/tests/**/*.ts'",
"check:prepare-stage-schema": "node scripts/check-prepare-stage-schema.mjs",
"release:check": "npm run typecheck && npm run lint && npm test && npm --workspace @stelis/core-api run test:redis && npm run build",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"esbuild": "0.28.1",
"eslint": "^9.0.0",
"prettier": "^3.2.0",
"redis-memory-server": "^0.16.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"esbuild": "0.28.1"
}
}