|
| 1 | +{ |
| 2 | + "name": "@agoric/ui-components", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Reusable UI Components for Agoric Dapps, built with React and MaterialUI", |
| 5 | + "main": "src/index.js", |
| 6 | + "peerDependencies": { |
| 7 | + "@agoric/assert": "^0.2.3", |
| 8 | + "@agoric/ertp": "^0.10.0", |
| 9 | + "@agoric/eventual-send": "^0.13.3", |
| 10 | + "@agoric/install-ses": "^0.5.3", |
| 11 | + "@material-ui/core": "^4.11.3", |
| 12 | + "react": "^16.14.0", |
| 13 | + "react-dom": "^16.8.0" |
| 14 | + }, |
| 15 | + "scripts": { |
| 16 | + "test": "BABEL_ENV='test' ava", |
| 17 | + "build:tests": "rm -rf compiled && BABEL_ENV='test' ./node_modules/.bin/babel test/components --out-dir compiled/test/components", |
| 18 | + "build:src": "rm -rf dist && BABEL_ENV='test' ./node_modules/.bin/babel src --out-dir dist", |
| 19 | + "build": "yarn build:src && yarn build:tests", |
| 20 | + "lint-fix": "yarn lint --fix", |
| 21 | + "lint": "yarn lint:types && yarn lint:eslint", |
| 22 | + "lint-check": "yarn lint", |
| 23 | + "lint:eslint": "eslint '**/*.js'", |
| 24 | + "lint:types": "tsc -p jsconfig.json" |
| 25 | + }, |
| 26 | + "eslintConfig": { |
| 27 | + "extends": [ |
| 28 | + "react-app", |
| 29 | + "@agoric" |
| 30 | + ], |
| 31 | + "rules": { |
| 32 | + "no-use-before-define": "off", |
| 33 | + "@typescript-eslint/no-use-before-define": [ |
| 34 | + "error" |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + "eslintIgnore": [ |
| 39 | + "dist", |
| 40 | + "compiled" |
| 41 | + ], |
| 42 | + "prettier": { |
| 43 | + "trailingComma": "all", |
| 44 | + "singleQuote": true |
| 45 | + }, |
| 46 | + "devDependencies": { |
| 47 | + "@babel/cli": "^7.12.13", |
| 48 | + "@babel/core": "^7.12.13", |
| 49 | + "@babel/plugin-syntax-jsx": "^7.12.1", |
| 50 | + "@material-ui/core": "4.11.3", |
| 51 | + "@typescript-eslint/eslint-plugin": "^4.14.2", |
| 52 | + "ava": "^3.15.0", |
| 53 | + "babel-eslint": "^10.1.0", |
| 54 | + "babel-plugin-named-asset-import": "^0.3.7", |
| 55 | + "babel-preset-react-app": "^10.0.0", |
| 56 | + "enzyme": "^3.11.0", |
| 57 | + "enzyme-adapter-react-16": "^1.15.6", |
| 58 | + "eslint-config-react-app": "^6.0.0", |
| 59 | + "eslint-plugin-flowtype": "^5.2.0", |
| 60 | + "eslint-plugin-react": "^7.22.0", |
| 61 | + "eslint-plugin-react-hooks": "^4.2.0", |
| 62 | + "esm": "^3.2.25", |
| 63 | + "prettier": "^1.19.0", |
| 64 | + "react": "^16.14.0", |
| 65 | + "react-dom": "^16.8.0", |
| 66 | + "typescript": "^4.2.3" |
| 67 | + }, |
| 68 | + "ava": { |
| 69 | + "files": [ |
| 70 | + "compiled/test/components/**/test-*.js", |
| 71 | + "test/**/*.js", |
| 72 | + "!test/components" |
| 73 | + ], |
| 74 | + "require": [ |
| 75 | + "esm", |
| 76 | + "./test/_setup-enzyme-adapter.js" |
| 77 | + ] |
| 78 | + }, |
| 79 | + "publishConfig": { |
| 80 | + "access": "public" |
| 81 | + }, |
| 82 | + "repository": { |
| 83 | + "type": "git", |
| 84 | + "url": "git+https://github.com/Agoric/agoric-sdk.git" |
| 85 | + }, |
| 86 | + "keywords": [ |
| 87 | + "smart", |
| 88 | + "contract", |
| 89 | + "cryptocurrency", |
| 90 | + "exchange", |
| 91 | + "tokens" |
| 92 | + ], |
| 93 | + "author": "Agoric", |
| 94 | + "license": "Apache-2.0", |
| 95 | + "bugs": { |
| 96 | + "url": "https://github.com/Agoric/agoric-sdk/issues" |
| 97 | + }, |
| 98 | + "homepage": "https://github.com/Agoric/agoric-sdk#readme", |
| 99 | + "files": [ |
| 100 | + "src", |
| 101 | + "dist", |
| 102 | + "NEWS.md", |
| 103 | + "exported.js" |
| 104 | + ], |
| 105 | + "dependencies": { |
| 106 | + "@agoric/nat": "^4.0.0" |
| 107 | + } |
| 108 | +} |
0 commit comments