-
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) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 823 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": "sentinel",
"version": "0.1.0",
"private": true,
"description": "Autonomous liquidation and risk network on Somnia",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"contracts:build": "forge build --root contracts",
"contracts:test": "forge test --root contracts -vvv",
"contracts:fmt": "forge fmt --root contracts",
"frontend:dev": "npm run dev -w @sentinel/frontend",
"frontend:build": "npm run build -w @sentinel/frontend"
},
"devDependencies": {
"typescript": "^5.7.2"
}
}