UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

62 lines 1.38 kB
{ "name": "@accounts/server", "version": "0.33.1", "description": "Fullstack authentication and accounts-management", "main": "lib/index.js", "typings": "lib/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "src", "lib" ], "jest": { "testEnvironment": "node", "preset": "ts-jest" }, "repository": { "type": "git", "url": "https://github.com/accounts-js/accounts/tree/master/packages/server" }, "keywords": [ "rest", "graphql", "grant", "auth", "authentication", "accounts", "users", "oauth" ], "author": "Tim Mikeladze", "license": "MIT", "dependencies": { "@accounts/types": "^0.33.1", "@types/jsonwebtoken": "8.3.9", "emittery": "0.8.1", "jsonwebtoken": "8.5.1", "jwt-decode": "3.1.2", "lodash.merge": "4.6.2", "tslib": "2.3.0" }, "devDependencies": { "@types/jest": "26.0.24", "@types/lodash.merge": "4.6.6", "@types/node": "16.4.13", "jest": "27.0.6", "rimraf": "3.0.2", "ts-jest": "27.0.4" }, "scripts": { "clean": "rimraf lib", "start": "tsc --watch", "precompile": "pnpm run clean", "compile": "tsc", "test": "npm run testonly", "test-ci": "npm lint && npm coverage", "testonly": "jest", "test:watch": "jest --watch", "coverage": "npm run testonly -- --coverage" } }