Ghost/ghost/members-auth-pages/package.json
2019-05-07 17:15:50 +02:00

44 lines
1.3 KiB
JSON

{
"name": "@tryghost/members-auth-pages",
"version": "0.1.0",
"repository": "https://github.com/TryGhost/Members/tree/master/packages/members-gateway-protocol",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "yarn build --no-production && preact watch --port=8080",
"clean": "rm -rf dist && mkdir dist",
"prebuild": "npm run clean",
"build": "preact build --template=index.html --src=app.js --dest=dist --service-worker=false --no-prerender",
"prepublishOnly": "npm run build",
"pretest": "npm run clean",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "echo '@TODO FIX LINTING FOR MEMBERS-AUTH-PAGES'",
"posttest": "yarn lint"
},
"files": [
"index.js",
"dist"
],
"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": "^3.0.0-next.19"
},
"dependencies": {
"@tryghost/members-gateway-protocol": "^0.1.0",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"react-stripe-elements": "^2.0.3"
},
"publishConfig": {
"access": "public"
}
}