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
29 lines (29 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 920 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
{
"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": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0"
}
}