-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 778 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"dependencies": {
"@vitejs/plugin-react": "^4.5.0",
"kleur": "^4.1.5",
"vite": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"concurrently": "^9.1.2",
"tsconfig-paths": "^4.2.0"
},
"scripts": {
"start": "concurrently \"npm run start:front\" \"npm run start:back\"",
"start:front": "cd view && npm run dev",
"start:back": "cd back && npm run dev",
"build": "concurrently \"npm run build:front\" \"npm run build:back\"",
"build:front": "cd view && npm run build",
"build:back": "cd back && npm run build",
"install:all": "npm install && concurrently \"npm run install:back\" \"npm run install:front\" ",
"install:front": "cd view && npm install",
"install:back": "cd back && npm install"
}
}