forked from ZenYukti/OpenMindWell
-
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) · 782 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 782 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": "openmindwell",
"version": "1.0.0",
"description": "Open-source anonymous mental health support platform",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"preview": "cd frontend && npm run preview"
},
"keywords": [
"mental-health",
"support",
"anonymous",
"peer-support",
"wellness"
],
"author": "OpenMindWell Contributors",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}