diff --git a/package.json b/package.json new file mode 100644 index 0000000..6c69e82 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "IIIF Cloud", + "license": "MIT", + "engines": { + "node": "16.x", + "yarn": "1.x" + }, + "scripts": { + "build": "yarn --cwd client install && yarn --cwd client run build && cd ..", + "deploy": "cp -a client/build/. public/", + "heroku-postbuild": "yarn build && yarn deploy" + } +}