-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
22 lines (22 loc) · 871 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "matcha",
"version": "1.0.0",
"description": "dating web application",
"scripts": {
"init": "npm run load && npm run geoip",
"load": "npm install && cd backend && npm install && cd ../frontend && npm install",
"geoip": "cd backend && npm run geoip",
"start": "concurrently \"cd backend && npm start\" \" cd frontend && npm start\" ",
"dev": "concurrently \"cd backend && npm run dev\" \" cd frontend && npm start\" ",
"prod": "cd frontend && npm run build && cd ../backend && npm start",
"setup_db": "cd backend && npm run setup_db && npm run fake_db",
"drop_db": "cd backend && npm run drop_db",
"fake_db": "cd backend && npm run fake_db"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^5.3.0"
}
}