* chore: bump payload * test: add jest * chore: update eslint rules * feat: add email transport to plugin * ci: actions build and test * chore: bump typescript * chore: adjust top-level plugin options * test: clean up * feat: better env var handling, assertions * chore: update README * 1.1.0-beta.0 * chore: update package.json files * 1.1.0-beta.1 * chore: fix webpack recursion * 1.1.0-beta.2 * chore: bump payload * chore: email logging on success on error * 1.1.0-beta.3 * chore: use proper env var for default domain * 1.1.0-beta.4 * chore: log sendEmail error with better message * 1.1.0-beta.5 * chore: add comments to plugin options properties * 1.1.0-beta.6 * chore: bump payload peer dep * 1.1.0-beta.7 * chore: update README * chore: bump payload in dev dir * chore: package.json license * test: move test
29 lines
912 B
JSON
29 lines
912 B
JSON
{
|
|
"name": "payload-plugin-cloud-demo",
|
|
"version": "1.0.0",
|
|
"main": "dist/server.js",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev:s3": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts nodemon",
|
|
"build:payload": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload build",
|
|
"build:server": "tsc",
|
|
"build": "yarn build:payload && yarn build:server",
|
|
"serve": "cross-env PAYLOAD_CONFIG_PATH=dist/payload.config.js NODE_ENV=production node dist/server.js",
|
|
"generate:types": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload generate:types"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.142.0",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"payload": "^1.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.9",
|
|
"cross-env": "^7.0.3",
|
|
"nodemon": "^2.0.6",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|