gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
81 lines (80 loc) • 1.95 kB
JSON
{
"name": "gpreview",
"version": "1.0.0",
"description": "Preview Ghost themes locally without a full Ghost installation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gpreview": "./dist/cli/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"preview": "node dev.js",
"stop": "node stop.js",
"start": "node dist/cli/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"prepare": "npm run build"
},
"keywords": [
"ghost",
"theme",
"preview",
"handlebars",
"development",
"ghost-theme",
"theme-development",
"local-development"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johnonolan/preview.git"
},
"bugs": {
"url": "https://github.com/johnonolan/preview/issues"
},
"homepage": "https://github.com/johnonolan/preview#readme",
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"glob": "^10.3.10",
"handlebars": "^4.7.8",
"open": "^8.4.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.5",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^30.0.4",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}