|
| 1 | +{ |
| 2 | + "name": "@magic-sdk/admin", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Magic Authentication Admin Javascript SDK", |
| 5 | + "author": "Fortmatic <[email protected]> (https://fortmatic.com/)", |
| 6 | + "license": "MIT", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/fortmatic/magic-admin-js" |
| 10 | + }, |
| 11 | + "main": "dist/index.js", |
| 12 | + "types": "dist/index.d.ts", |
| 13 | + "scripts": { |
| 14 | + "start": "npm run clean:build && ./scripts/start.sh", |
| 15 | + "start:sdk": "tsc -w -p ./config/tsconfig.sdk.json", |
| 16 | + "start:e2e": "ts-node src/node-e2e/app.ts", |
| 17 | + "build": "npm run clean:build && ./scripts/build.sh", |
| 18 | + "clean": "npm-run-all -s clean:*", |
| 19 | + "clean:build": "rimraf dist", |
| 20 | + "clean_node_modules": "rimraf node_modules", |
| 21 | + "lint": "tslint --fix ." |
| 22 | + }, |
| 23 | + "devDependencies": { |
| 24 | + "@ikscodes/eslint-config": "^6.2.0", |
| 25 | + "@ikscodes/prettier-config": "^1.0.0", |
| 26 | + "@types/eth-sig-util": "^2.1.0", |
| 27 | + "@types/express": "^4.17.2", |
| 28 | + "@types/node": "^13.1.2", |
| 29 | + "@types/node-fetch": "^2.5.4", |
| 30 | + "@typescript-eslint/eslint-plugin": "^2.15.0", |
| 31 | + "eslint": "^6.7.2", |
| 32 | + "eslint-import-resolver-typescript": "^2.0.0", |
| 33 | + "eslint-plugin-import": "^2.18.2", |
| 34 | + "eslint-plugin-jsx-a11y": "^6.2.3", |
| 35 | + "eslint-plugin-prettier": "^3.1.2", |
| 36 | + "eslint-plugin-react": "^7.15.1", |
| 37 | + "eslint-plugin-react-hooks": "^1.7.0", |
| 38 | + "npm-run-all": "~4.1.5", |
| 39 | + "prettier": "^1.19.1", |
| 40 | + "rimraf": "~3.0.0", |
| 41 | + "ts-node": "~8.5.2", |
| 42 | + "tslint": "~5.20.1", |
| 43 | + "typescript": "~3.7.2" |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "eth-sig-util": "2.1.2", |
| 47 | + "ethereumjs-util": "^6.2.0", |
| 48 | + "express": "^4.17.1", |
| 49 | + "node-fetch": "^2.6.0" |
| 50 | + }, |
| 51 | + "husky": { |
| 52 | + "hooks": { |
| 53 | + "pre-commit": "lint-staged" |
| 54 | + } |
| 55 | + }, |
| 56 | + "lint-staged": { |
| 57 | + "*.{ts,tsx}": "eslint --fix" |
| 58 | + } |
| 59 | +} |
0 commit comments