-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 922 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
{
"name": "trustlesstask",
"version": "1.0.0",
"description": "Decentralized freelance marketplace on Cardano blockchain",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend-api && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd backend-api && npm install && npm run build && cd ../frontend && npm install && npm run build",
"build:backend": "cd backend-api && npm install && npm run build",
"build:frontend": "cd frontend && npm install && npm run build",
"install:all": "npm install && cd backend-api && npm install && cd ../frontend && npm install",
"start": "cd backend-api && npm start"
},
"keywords": [
"cardano",
"blockchain",
"freelance",
"web3",
"plutus"
],
"author": "campverse",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}