forked from Nullifier-Systems/velo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1006 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
28
29
30
31
32
{
"name": "velo",
"private": true,
"version": "0.1.0",
"description": "Velo — anonymous cash liquidity on Stellar, by Nullifier Systems",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"mobile/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "npm run test:localization && turbo run test",
"test:localization": "node --test scripts/validate-localization.test.mjs",
"localization:check": "node scripts/validate-localization.mjs",
"dev:api": "npm run dev -w apps/api",
"dev:frontend": "npm run dev -w mobile/frontend",
"dev:backend": "npm run dev -w mobile/backend",
"post-deploy-check": "npm run post-deploy-check -w apps/api",
"bot:refund": "tsx scripts/refund-bot.ts",
"test:load": "node scripts/run-load-test.js"
},
"devDependencies": {
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"turbo": "^2.1.0"
},
"packageManager": "npm@10.0.0"
}