-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 829 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "mindmeld",
"version": "1.0.0",
"description": "MindMeld deliberation tool",
"scripts": {
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"dev:backend": "cd backend && npm run dev",
"build:backend": "cd backend && npm run build",
"start": "npm run build:backend && concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"dev": "concurrently \"npm run start:frontend\" \"npm run dev:backend\"",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && npm test",
"test": "concurrently \"npm run test:frontend\" \"npm run test:backend || exit 0\""
},
"dependencies": {
"concurrently": "^6.2.0"
}
}