UNPKG

remix-auth-twilio

Version:

Uses the [Twilio Verify API](https://www.twilio.com/verify) to validate users via SMS and add simple phone-based auth to a [Remix](https://remix.run) application using [Remix Auth](https://github.com/sergiodxa/remix-auth).

62 lines (61 loc) 1.51 kB
{ "name": "remix-auth-twilio", "version": "1.0.0", "main": "./build/index.js", "types": "./build/index.d.ts", "scripts": { "build": "tsc --project tsconfig.json", "typecheck": "tsc --project tsconfig.json --noEmit", "lint": "eslint --ext .ts,.tsx src/" }, "keywords": [ "remix", "remix-auth", "auth", "authentication", "sms", "strategy" ], "license": "MIT", "author": { "name": "Dan Philibin", "email": "dan@danphilibin.com", "url": "https://github.com/danphilibin" }, "repository": { "url": "https://github.com/danphilibin/remix-auth-twilio", "type": "git" }, "files": [ "build", "package.json", "README.md" ], "peerDependencies": { "@remix-run/server-runtime": "^1.0.0" }, "devDependencies": { "@babel/core": "^7.14.2", "@babel/preset-env": "^7.14.1", "@babel/preset-react": "^7.13.13", "@babel/preset-typescript": "^7.13.0", "@remix-run/node": "^1.0.3", "@remix-run/react": "^1.1.1", "@remix-run/server-runtime": "^1.0.0", "@typescript-eslint/eslint-plugin": "^4.23.0", "@typescript-eslint/parser": "^4.23.0", "eslint": "^7.26.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "eslint-plugin-unicorn": "^32.0.1", "prettier": "^2.3.2", "react": "^17.0.2", "ts-node": "^9.1.1", "typescript": "^4.3.5" }, "dependencies": { "phone": "^3.1.34", "remix-auth": "^3.0.0", "twilio": "^4.7.2" } }