-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 951 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
23
24
25
26
27
28
29
{
"name": "meili",
"version": "1.0.0",
"description": "Travel planning app, to travel with friends without the headache of planning with them.",
"dependencies": {},
"devDependencies": {
"concurrently": "^3.5.0"
},
"scripts": {
"frontend": "cd frontend/ && npm run start",
"backend": "cd backend/ && npm run start",
"dev": "concurrently --kill-others \"npm run frontend\" \"npm run backend\" ",
"start": "npm run dev",
"setup-frontend": "cd frontend/ && npm install",
"setup-backend": "cd backend/ && npm run setup",
"setup": "npm install && npm run setup-frontend && npm run setup-backend",
"lint": "cd frontend/ && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aneedalie/meili.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aneedalie/meili/issues"
},
"homepage": "https://github.com/aneedalie/meili#readme"
}