laconic-console/package.json

94 lines
2.8 KiB
JSON
Raw Normal View History

{
2023-03-20 08:23:46 +00:00
"name": "@cerc-io/console-app",
"version": "1.2.9",
2023-03-21 01:04:08 +00:00
"description": "Laconic Console",
2023-03-20 08:23:46 +00:00
"repository": "https://github.com/cerc-io/laconic-console",
"main": "dist/es/index.js",
"files": [
"src/gql"
],
"scripts": {
2023-03-20 08:23:46 +00:00
"analyzer": "webpack --config webpack-analyzer.config.js",
"build": "yarn dist",
"build:babel": "babel ./src --out-dir ./dist/es --ignore \"**/*.test.js\" --source-maps inline",
"clean": "rm -rf dist",
"dist": "yarn clean && yarn build:babel && CONFIG_FILE=config-production.yml webpack",
"lint": "semistandard 'src/**/*.js'",
"start": "CONFIG_FILE=${CONFIG_FILE:-config-testnet.yml} VERBOSE=true webpack-dev-server --mode development",
"test": "jest --rootDir ./src --passWithNoTests --no-cache"
},
"author": "",
2023-03-20 08:23:46 +00:00
"license": "GPL-3.0",
"browserslist": [
2023-03-20 08:23:46 +00:00
"> 2%"
],
"jest": {
"testEnvironment": "node"
},
"dependencies": {
2023-03-21 07:22:47 +00:00
"@apollo/react-components": "^4.0.0",
"@apollo/react-hooks": "^4.0.0",
"@babel/runtime": "^7.21.0",
2023-03-20 08:23:46 +00:00
"@cerc-io/laconic-sdk": "0.1.6",
"@lirewine/debug": "1.0.0-beta.78",
"@lirewine/gem-core": "1.0.0-beta.28",
"@lirewine/react-ux": "1.1.0-beta.0",
2023-03-21 07:22:47 +00:00
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
2023-03-20 08:23:46 +00:00
"@rehooks/component-size": "^1.0.3",
"@visx/network": "^1.0.0",
"@visx/tooltip": "^1.0.0",
"@visx/zoom": "^1.0.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"build-url": "^2.0.0",
"clsx": "^1.1.0",
"compare-versions": "^3.6.0",
"d3-force": "^2.1.1",
"debug": "^4.1.1",
"graphql-tag": "^2.10.3",
"lodash.defaultsdeep": "^4.6.1",
"lodash.get": "^4.4.2",
"moment": "^2.26.0",
"node-polyfill-webpack-plugin": "^2.0.1",
2023-03-21 07:22:47 +00:00
"react": "^16.12.0",
"react-dom": "^16.12.0",
2023-03-21 15:15:43 +00:00
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
2023-03-20 08:23:46 +00:00
"source-map-support": "^0.5.12"
},
"devDependencies": {
2023-03-21 15:15:43 +00:00
"@babel/cli": "7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
2023-03-20 08:23:46 +00:00
"@webpack-cli/info": "^2.0.1",
2023-03-21 15:15:43 +00:00
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
2023-03-20 08:23:46 +00:00
"babel-plugin-import-graphql": "^2.7.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-inline-json-import": "^0.3.2",
"dotenv-webpack": "^8.0.1",
"graphql": "^15.0.0",
"html-webpack-plugin": "^5.5.0",
2023-03-21 15:15:43 +00:00
"jest": "^29.5.0",
2023-03-20 08:23:46 +00:00
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"webpack-merge": "^5.8.0",
"webpack-version-file-plugin": "^0.5.0",
"yaml-loader": "^0.8.0"
},
"peerDependencies": {
"react": "16.12.0",
"react-dom": "^16.12.0"
},
"publishConfig": {
"access": "public"
}
}