-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
23 lines (23 loc) · 972 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
{
"name": "arangobnb-tutorial",
"private": true,
"scripts": {
"install": "npm run install-vue && npm run install-react && npm run install-backend",
"install-backend": "cd ./workspaces/backend && npm install",
"install-vue": "cd ./workspaces/frontend-vue && npm install --legacy-peer-deps",
"install-react": "cd ./workspaces/frontend-react && npm install --legacy-peer-deps",
"serve": "cd ./workspaces/frontend-vue && npm run serve",
"serve-react": "cd ./workspaces/frontend-react && npm run start",
"serve-backend": "cd ./workspaces/backend && npm run dev",
"build": "cd ./workspaces/frontend-vue && npm run build",
"lint": "cd ./workspaces/frontend-vue && npm run lint"
},
"dependencies": {
"leaflet-geosearch": "^3.2.1",
"lodash": "^4.17.21",
"vuex": "^3.6.2",
"lint": "cd ./workspaces/frontend-vue && npm run lint",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down"
}
}