-
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) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 795 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": "saas-app",
"version": "1.0.0",
"private": true,
"description": "Modern SaaS application with Vue3 frontend and Express backend",
"scripts": {
"dev": "concurrently \"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",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"keywords": [
"saas",
"vue3",
"typescript",
"express",
"socket.io"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2"
}
}