react-waitlist
Version:
A customizable waitlist form component for React applications
121 lines (120 loc) • 3.71 kB
JSON
{
"name": "react-waitlist",
"version": "1.1.1-beta.11",
"description": "A customizable waitlist form component for React applications",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.esm.js",
"require": "./dist/server.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.esm.js",
"require": "./dist/client.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"predeploy-storybook": "npm run build-storybook && npx msw init storybook-static --save && npx cpy-cli .nojekyll storybook-static",
"deploy-storybook": "gh-pages -d storybook-static",
"prepublishOnly": "npm run build",
"version": "node scripts/update-changelog.js && git add CHANGELOG.md"
},
"keywords": [
"react",
"waitlist",
"resend",
"form",
"component",
"audience"
],
"author": "Paulo Matheus Vinhas",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/react-webpack5": "^7.6.10",
"@storybook/test": "^7.6.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.11",
"@types/jest-axe": "^3.5.9",
"@types/react": "^18.2.48",
"axios": "^1.8.3",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"express": "^4.21.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.6.10",
"supertest": "^6.3.4",
"ts-jest": "^29.2.6",
"typescript": "^5.3.3"
},
"dependencies": {
"resend": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmatheusvinhas/react-waitlist.git"
},
"bugs": {
"url": "https://github.com/pmatheusvinhas/react-waitlist/issues"
},
"homepage": "https://github.com/pmatheusvinhas/react-waitlist#readme",
"changelog": "https://github.com/pmatheusvinhas/react-waitlist/blob/main/CHANGELOG.md"
}