Ghost/ghost/members-auth-pages/package.json
Fabien O'Carroll 07b6e73bd8 Added members lib module (#10260)
* Added members library inc. gateway

refs #10213

* Added the auth pages and build steps for them

refs #10213

* Cleaned up logs

* Updated gruntfile to run yarn for member auth

* Design refinements on members popups

* UI refinements

* Updated backend call to trigger only if frontend validation passes

* Design refinements for error messages

* Added error message for email failure

* Updated request-password-reset to not attempt to send headers twice

* Updated preact publicPath to relative path

* Build auth pages on init
2019-05-07 17:15:50 +02:00

29 lines
719 B
JSON

{
"name": "ghost-member",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "preact build --src=index.js --dest=dist --service-worker=false --no-prerender",
"dev": "yarn build --no-production && preact watch --port=8080",
"lint": "eslint src"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"autoprefixer": "^9.4.2",
"cssnano": "^4.1.7",
"grunt": "1.0.3",
"grunt-shell": "2.1.0",
"postcss-color-mod-function": "^3.0.3",
"postcss-css-variables": "^0.11.0",
"postcss-custom-properties": "^8.0.9",
"postcss-import": "^12.0.1",
"preact-cli": "^2.0.0"
},
"dependencies": {
"preact": "^8.2.1",
"preact-compat": "^3.17.0"
}
}