mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
07b6e73bd8
* 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
29 lines
719 B
JSON
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"
|
|
}
|
|
}
|