-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
46
47
48
49
50
51
52
{
"name": "algora",
"version": "0.1.0",
"private": true,
"description": "24/7 Live Agentic Governance Platform",
"repository": {
"type": "git",
"url": "https://github.com/mossland/Algora.git"
},
"author": "Mossland",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo run dev",
"dev:web": "pnpm --filter @algora/core build && WATCHPACK_POLLING=true pnpm --filter @algora/web dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"db:init": "pnpm --filter @algora/api db:init",
"db:migrate": "pnpm --filter @algora/api db:migrate",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}