UNPKG

@shopify/shopify-app-express

Version:

Shopify Express Middleware - to simplify the building of Shopify Apps with Express

66 lines 1.85 kB
{ "name": "@shopify/shopify-app-express", "version": "5.0.20", "description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express", "repository": { "type": "git", "url": "git+https://github.com/Shopify/shopify-app-js.git", "directory": "packages/apps/shopify-app-express" }, "bugs": { "url": "https://github.com/Shopify/shopify-app-js/issues" }, "homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/apps/shopify-app-express", "author": "Shopify Inc.", "license": "MIT", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", "types": "./dist/ts/index.d.ts", "publishConfig": { "access": "public" }, "keywords": [ "shopify", "node", "express", "app", "graphql", "rest", "webhook", "Admin API", "Storefront API" ], "dependencies": { "@shopify/shopify-api": "^11.14.1", "@shopify/shopify-app-session-storage": "^3.0.20", "@shopify/shopify-app-session-storage-memory": "^4.0.20", "cookie-parser": "^1.4.7", "express": "^4.21.2", "semver": "^7.7.1" }, "devDependencies": { "@types/compression": "^1.8.1", "@types/cookie-parser": "^1.4.9", "@types/express": "^4.17.21", "@types/jsonwebtoken": "^9.0.10", "@types/semver": "^7.7.0", "jsonwebtoken": "^9.0.2" }, "files": [ "dist/*", "!tsconfig.tsbuildinfo", "!node_modules" ], "scripts": { "lint": "eslint . --ext .js,.ts", "build": "pnpm rollup && pnpm tsc -p ./tsconfig.build.json", "tsc": "tsc", "test": "jest", "test:ci": "pnpm test", "rollup": "rollup -c rollup.config.js --bundleConfigAsCjs", "clean": "rimraf .rollup.cache dist", "changeset": "changeset", "version": "changeset version", "release": "pnpm build && changeset publish" } }