laconic-console/packages/console-app/package.json

126 lines
3.6 KiB
JSON
Raw Normal View History

{
"name": "@dxos/console-app",
2020-06-23 04:22:10 +00:00
"version": "1.0.0-beta.14",
"description": "DxOS Console Client",
"main": "dist/es/index.js",
2020-05-23 18:36:15 +00:00
"files": [
"src/gql"
2020-05-23 18:36:15 +00:00
],
"scripts": {
"analyzer": "webpack --config webpack-analyzer.config.js",
2020-06-11 20:44:35 +00:00
"build:babel": "babel ./src --out-dir ./dist/es --ignore \"**/*.test.js\" --source-maps inline",
2020-06-11 20:29:52 +00:00
"build": "yarn dist",
2020-06-11 20:44:35 +00:00
"dist": "yarn clean && cp -f ${CONFIG_FILE:-config.yml.production} config.yml && yarn build:babel && webpack",
"clean": "rm -rf dist",
"lint": "semistandard 'src/**/*.js'",
2020-06-11 20:29:52 +00:00
"start": "cp -f ${CONFIG_FILE:-config.yml.development} config.yml && VERBOSE=true webpack-dev-server --mode development",
"test": "jest --rootDir ./src --passWithNoTests --no-cache"
},
"author": "DxOS.org",
"license": "GPL-3.0",
"browserslist": [
"> 5%"
],
"jest": {
"testEnvironment": "node"
},
"dependencies": {
2020-05-24 13:55:36 +00:00
"@apollo/react-components": "^3.1.5",
"@apollo/react-hooks": "^3.1.5",
"@babel/runtime": "^7.8.7",
2020-05-27 02:35:55 +00:00
"@dxos/debug": "^1.0.0-beta.20",
2020-05-23 23:01:17 +00:00
"@dxos/gem-core": "^1.0.0-beta.11",
2020-05-27 02:35:55 +00:00
"@dxos/react-ux": "^1.0.0-beta.37",
2020-05-23 23:01:17 +00:00
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
2020-05-25 02:40:15 +00:00
"@material-ui/lab": "^4.0.0-alpha.54",
2020-05-26 10:04:25 +00:00
"@wirelineio/registry-client": "^0.4.9",
2020-05-23 23:01:17 +00:00
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
2020-05-25 22:32:45 +00:00
"build-url": "^2.0.0",
2020-05-23 23:01:17 +00:00
"clsx": "^1.1.0",
2020-05-26 02:16:25 +00:00
"compare-versions": "^3.6.0",
"debug": "^4.1.1",
"graphql-tag": "^2.10.3",
2020-05-23 20:16:35 +00:00
"lodash.defaultsdeep": "^4.6.1",
2020-05-25 22:32:45 +00:00
"lodash.get": "^4.4.2",
2020-05-25 02:40:15 +00:00
"moment": "^2.26.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
2020-05-24 00:05:04 +00:00
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
2020-05-23 18:36:15 +00:00
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
2020-05-31 18:38:44 +00:00
"@webpack-cli/info": "^0.2.0",
"@webpack-cli/init": "^0.3.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-import-graphql": "^2.7.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-inline-json-import": "^0.3.2",
"dotenv-webpack": "^1.8.0",
2020-05-23 21:21:27 +00:00
"eslint": "^6.7.2",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.1",
2020-05-23 23:01:17 +00:00
"eslint-config-standard-jsx": "^8.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
2020-05-23 21:21:27 +00:00
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.13.1",
2020-05-23 21:21:27 +00:00
"eslint-plugin-jsdoc": "^21.0.0",
2020-05-23 20:16:35 +00:00
"eslint-plugin-node": "^11.1.0",
2020-05-23 21:21:27 +00:00
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^24.8.0",
2020-05-23 18:36:15 +00:00
"react-scripts": "^3.4.1",
"semistandard": "^14.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
2020-05-31 18:38:44 +00:00
"webpack-cli": "^3.3.11",
2020-05-23 18:36:15 +00:00
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
2020-05-24 02:37:52 +00:00
"webpack-version-file-plugin": "^0.4.0",
"yaml-loader": "^0.6.0"
},
"peerDependencies": {
"react": "16.12.0",
"react-dom": "^16.12.0"
},
"publishConfig": {
"access": "public"
2020-05-23 20:16:35 +00:00
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"plugin:jest/recommended",
2020-05-23 23:01:17 +00:00
"semistandard",
"standard-jsx"
2020-05-23 20:16:35 +00:00
],
"plugins": [
"babel"
],
"rules": {
"babel/semi": 1
}
},
"semistandard": {
"parser": "babel-eslint",
"env": [
"jest",
"node",
"browser"
]
}
}