-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "sakusaku",
"version": "1.0.0",
"description": "A community-driven platform for Tech and Coding enthusiasts",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "cd backend && npm run dev",
"client:dev": "cd frontend && npm run dev",
"server:install": "cd backend && npm install",
"client:install": "cd frontend && npm install",
"install:all": "npm run server:install && npm run client:install",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start"
},
"keywords": ["coding", "community", "tutorials", "social"],
"author": "SakuSaku Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}