-
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) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "codexlab",
"version": "1.0.0",
"description": "CodexLab - Full-stack development environment",
"private": true,
"scripts": {
"install": "npm run install:frontend && npm run install:backend",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"dev": "npm run dev:frontend",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"start": "npm run start:backend",
"start:frontend": "cd frontend && npm run preview",
"start:backend": "cd backend && npm start",
"build": "cd frontend && npm run build",
"setup": "./setup.sh"
},
"keywords": ["codexlab", "fullstack", "react", "express"],
"author": "",
"license": "ISC"
}