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
24 lines (24 loc) · 781 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 781 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
{
"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",
"prepare": "husky"
},
"license": "MIT",
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {}
}