-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "react-ai-chat-prototype",
"version": "1.0.0",
"description": "React TypeScript Azure AI Foundry Agent Integration",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev:frontend": "npm run start --workspace=frontend",
"dev:backend": "npm run dev --workspace=backend",
"dev:all": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:frontend": "npm run build --workspace=frontend",
"build:backend": "npm run build --workspace=backend",
"build:all": "npm run build:backend && npm run build:frontend",
"test:frontend": "npm run test --workspace=frontend",
"test:backend": "npm run test --workspace=backend",
"test:all": "npm run test:backend && npm run test:frontend",
"lint:frontend": "npm run lint --workspace=frontend",
"lint:backend": "npm run lint --workspace=backend",
"lint:all": "npm run lint:backend && npm run lint:frontend",
"clean": "rimraf frontend/build backend/dist",
"install:all": "npm install && npm install --workspace=frontend && npm install --workspace=backend"
},
"devDependencies": {
"concurrently": "^8.2.2",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@tailwindcss/postcss": "^4.1.11",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11"
}
}