forked from ZenYukti/SkillSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 765 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": "skillswap",
"version": "1.0.0",
"description": "SkillSwap - Trade Skills Without Money. A barter-only skill marketplace.",
"private": true,
"scripts": {
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"test": "cd server && npm test && cd ../client && npm test"
},
"keywords": [
"skillswap",
"barter",
"skills",
"marketplace",
"mern"
],
"author": "ZenYukti",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}