-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 839 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 839 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
28
29
{
"name": "deepschedule",
"version": "1.0.0",
"private": true,
"description": "Monorepo for DeepSchedule backend and frontend",
"contributors": [
"Jan Jakubowski",
"Wiktor Alisch"
],
"license": "MIT",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev:backend": "cd backend && npm run start",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\"",
"generate": "cd backend && npx prisma generate",
"postinstall": "npm install --prefix backend && npm install --prefix frontend && npm run generate"
},
"devDependencies": {
"concurrently": "^7.6.0"
},
"dependencies": {
"react-icons": "^5.5.0",
"react-select": "^5.10.1"
}
}