forked from Smartdevs17/stellarlend
-
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) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.14 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
{
"name": "stellarlend",
"version": "1.0.0",
"private": true,
"workspaces": [
"api",
"oracle"
],
"scripts": {
"install:all": "npm install",
"test:all": "npm run test --workspaces --if-present",
"lint:all": "npm run lint --workspaces --if-present",
"build:all": "npm run build --workspaces --if-present",
"format:all": "npm run format --workspaces --if-present",
"typecheck:all": "npm run typecheck --workspaces --if-present",
"dev:fork": "bash scripts/dev/start-fork-env.sh",
"dev:watch:contracts": "bash scripts/dev/watch-contracts.sh",
"dev:seed": "bash scripts/dev/apply-seed-state.sh",
"trace:contract": "npm --workspace oracle run trace:analyze --",
"deploy:verify": "bash scripts/verify-deployment.sh",
"deploy:rollback": "bash scripts/rollback.sh",
"verify:contract": "bash scripts/verify-contract.sh",
"mutation:api": "npm --workspace api run mutation:test",
"mutation:api:check": "npm --workspace api run mutation:check"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}