-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 746 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 746 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
{
"name": "quantx",
"version": "1.0.0",
"description": "Recurring Finance Infrastructure on Stellar",
"private": true,
"workspaces": [
"rfi-frontend",
"executor"
],
"scripts": {
"dev:frontend": "cd rfi-frontend && npm run dev",
"dev:backend": "cd backend && npm start",
"dev:executor": "cd executor && npm start",
"build:contract": "cd contracts/recurring_payment && cargo build --target wasm32-unknown-unknown --release",
"install:all": "npm install && cd rfi-frontend && npm install && cd ../backend && npm install && cd ../executor && npm install"
},
"keywords": [
"stellar",
"soroban",
"recurring-payments",
"defi",
"web3"
],
"author": "QuantX Team",
"license": "MIT"
}