forked from Split-Naira/SplitNaira
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.35 KB
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
35
36
{
"name": "splitnaira-workspace",
"version": "1.0.0",
"private": true,
"description": "SplitNaira - Royalty splitting for Nigeria's creative economy",
"scripts": {
"setup": "npm install && cd frontend && npm install && cd ../backend && npm install && cd ../contracts && cargo build",
"dev": "npm run dev:frontend & npm run dev:backend",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:frontend && npm run build:backend && npm run build:contracts",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"build:contracts": "cd contracts && cargo build",
"test": "npm run test:frontend && npm run test:backend && npm run test:contracts",
"test:frontend": "cd frontend && npm run test",
"test:backend": "cd backend && npm run test",
"test:contracts": "cd contracts && cargo test",
"lint": "npm run lint:frontend && npm run lint:backend",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"clean": "rm -rf frontend/build backend/dist && cd contracts && cargo clean"
},
"workspaces": [
"frontend",
"backend"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"zod": "^3.24.2"
},
"engines": {
"node": ">=18",
"npm": ">=8"
}
}