roschaefer f3a9996962 Copy package.json from webapp/
This will install the dependencies of the webapp/ folder first and then
overwrite the package.json to use different scripts. If we would track
dependencies in a separate package.json we would have to update it
with dependabot. We don't want that because of our precious build
server time.
2019-09-11 08:43:26 +02:00

17 lines
572 B
JSON

{
"name": "@human-connection/maintenance",
"version": "1.0.0",
"description": "Maintenance page for Human Connection",
"main": "index.js",
"repository": "https://github.com/Human-Connection/Human-Connection",
"author": "Robert Schäfer",
"license": "MIT",
"private": false,
"scripts": {
"dev": "yarn run nuxt -c nuxt.config.maintenance.js",
"build": "yarn run nuxt build -c nuxt.config.maintenance.js",
"start": "yarn run nuxt start -c nuxt.config.maintenance.js",
"generate": "yarn run nuxt generate -c nuxt.config.maintenance.js"
}
}