a71f801c3f
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings - Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers - Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page - Docker Compose and Dockerfile for self-hosted deployment - Uses bcryptjs for Node 24 compatibility Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
105 lines
2.9 KiB
JSON
105 lines
2.9 KiB
JSON
{
|
|
"version": "11.1.0",
|
|
"license": "MIT",
|
|
"description": "React notification made easy",
|
|
"keywords": [
|
|
"react",
|
|
"notification",
|
|
"toast",
|
|
"react-component",
|
|
"react-toastify",
|
|
"push",
|
|
"alert",
|
|
"snackbar",
|
|
"message"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"addons"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^18 || ^19",
|
|
"react-dom": "^18 || ^19"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"arrowParens": "avoid"
|
|
},
|
|
"name": "react-toastify",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fkhadra/react-toastify.git"
|
|
},
|
|
"author": "Fadi Khadra <fdkhadra@gmail.com> (https://fkhadra.github.io)",
|
|
"bugs": {
|
|
"url": "https://github.com/fkhadra/react-toastify/issues"
|
|
},
|
|
"homepage": "https://github.com/fkhadra/react-toastify#readme",
|
|
"devDependencies": {
|
|
"@4tw/cypress-drag-drop": "^2.3.1",
|
|
"@cypress/code-coverage": "^4.0.3",
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
"@testing-library/cypress": "^10.1.0",
|
|
"@types/node": "^25.6.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"coveralls": "^3.1.1",
|
|
"cypress": "^15.14.0",
|
|
"lefthook": "^2.1.6",
|
|
"lint-staged": "^16.4.0",
|
|
"postcss": "^8.5.10",
|
|
"prettier": "3.8.3",
|
|
"react": "^19.2.5",
|
|
"react-dom": "^19.2.5",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^6.0.3",
|
|
"vite": "^8.0.8",
|
|
"vite-plugin-istanbul": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1"
|
|
},
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"module": "dist/index.mjs",
|
|
"source": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./unstyled": {
|
|
"types": "./dist/unstyled.d.ts",
|
|
"import": "./dist/unstyled.mjs",
|
|
"require": "./dist/unstyled.js"
|
|
},
|
|
"./dist/ReactToastify.css": "./dist/ReactToastify.css",
|
|
"./ReactToastify.css": "./dist/ReactToastify.css",
|
|
"./package.json": "./package.json",
|
|
"./addons/use-notification-center": {
|
|
"types": "./addons/use-notification-center/index.d.ts",
|
|
"import": "./addons/use-notification-center/index.mjs",
|
|
"require": "./addons/use-notification-center/index.js"
|
|
},
|
|
"./notification-center": {
|
|
"types": "./addons/use-notification-center/index.d.ts",
|
|
"import": "./addons/use-notification-center/index.mjs",
|
|
"require": "./addons/use-notification-center/index.js"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
|
|
},
|
|
"scripts": {
|
|
"start": "pnpm --filter playground dev",
|
|
"test": "cypress open --component",
|
|
"test:run": "cypress run --component -b chrome",
|
|
"prettier": "prettier --write src",
|
|
"build": "tsup && cp src/style.css dist/ReactToastify.css"
|
|
}
|
|
} |