forked from CIRCLEUP-AJO/CIRCLEUP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.5 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
{
"name": "circleup",
"version": "0.1.0",
"description": "On-chain rotating savings circles (ROSCA) on Stellar Soroban",
"private": true,
"workspaces": [
"sdk",
"indexer",
"app",
"scripts"
],
"scripts": {
"install:all": "npm install",
"build:sdk": "npm run build --workspace=sdk",
"build:app": "npm run build --workspace=app",
"dev:app": "npm run dev --workspace=app",
"dev:indexer": "npm run dev --workspace=indexer",
"dev": "npm run dev:indexer & npm run dev:app",
"deploy:testnet": "npm run deploy:testnet --workspace=scripts",
"seed:demo": "npm run seed:demo --workspace=scripts",
"migrate": "npm run migrate:dev --workspace=indexer",
"hash-artifacts": "npm run hash-artifacts --workspace=scripts",
"verify-artifacts": "npm run verify-artifacts --workspace=scripts",
"funding-diagnostics": "npm run funding-diagnostics --workspace=scripts",
"validate-manifest": "npm run validate-manifest --workspace=scripts",
"lint": "npm run lint --workspace=app",
"test": "npm run test --workspace=sdk && npm run test --workspace=indexer && npm run test --workspace=app",
"test:e2e": "node --experimental-strip-types --test tests/e2e-demo.test.ts",
"test:perf": "node --experimental-strip-types --test tests/perf/perf-budget.test.ts"
},
"devDependencies": {
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/circleup"
},
"license": "MIT"
}