forked from ritik4ever/stellar-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (19 loc) · 704 Bytes
/
package.json
File metadata and controls
20 lines (19 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "stellar-stream",
"version": "1.0.0",
"description": "Real-time payment streaming platform built on Stellar",
"private": true,
"scripts": {
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"build": "cd backend && npm run build && cd ../frontend && npm run build",
"deploy:contract": "./scripts/deploy.sh",
"gen:bindings": "./scripts/generate-contract-bindings.sh",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"devDependencies": {
"conventional-changelog-cli": "^2.2.2"
}
}