-
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) · 748 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 748 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": "biz-flow",
"version": "1.0.0",
"description": "Full-stack business flow management application",
"private": true,
"scripts": {
"install:all": "npm install --prefix frontend && npm install --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"dev:backend": "npm run start:dev --prefix backend",
"build:frontend": "npm run build --prefix frontend",
"build:backend": "npm run build --prefix backend",
"build:all": "npm run build:frontend && npm run build:backend"
},
"keywords": [
"react",
"nestjs",
"vite",
"typescript",
"full-stack"
],
"author": "",
"license": "MIT",
"dependencies": {
"@tailwindcss/vite": "^4.1.17",
"tailwindcss": "^4.1.17"
}
}