-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 902 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
33
34
{
"name": "zerlin",
"version": "1.0.0",
"description": "STX Gas Calculator & Fee Estimator for Stacks Blockchain",
"private": true,
"workspaces": [
"backend",
"frontend",
"contract"
],
"scripts": {
"install:all": "pnpm install && cd backend && pnpm install && cd ../frontend && pnpm install && cd ../contract && pnpm install",
"dev": "./start-dev.sh",
"stop": "./stop-dev.sh",
"test": "pnpm --filter backend test && pnpm --filter contract test",
"build": "pnpm --filter backend build && pnpm --filter frontend build",
"clean": "rm -rf node_modules backend/node_modules frontend/node_modules contract/node_modules"
},
"keywords": [
"stacks",
"bitcoin",
"defi",
"gas",
"fee",
"calculator",
"blockchain"
],
"author": "Zerlin Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}