graphql-engine/console/package.json

214 lines
7.2 KiB
JSON
Raw Normal View History

2018-06-28 07:57:37 +03:00
{
2018-08-13 12:08:17 +03:00
"name": "graphql-engine-console",
2018-06-28 07:57:37 +03:00
"description": "Console for Hasura GraphQL Engine",
"author": "Hasura (https://github.com/hasura/graphql-engine)",
2019-07-04 12:27:35 +03:00
"license": "Apache 2.0",
2018-06-28 07:57:37 +03:00
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/hasura/graphql-engine"
},
2018-08-13 12:08:17 +03:00
"main": "index.js",
2018-06-28 07:57:37 +03:00
"homepage": "https://hasura.io/",
"keywords": [],
"scripts": {
"start-dev": "node -r dotenv/config ./bin/server.js",
"watch-client": "node -r dotenv/config webpack/webpack-dev-server.js",
"dev": "concurrently --kill-others \"npm run watch-client\" \"npm run start-dev\"",
"start-prod": "cross-env NODE_PATH=./src PORT=8080 NODE_ENV=production node ./bin/server.js",
2018-06-28 07:57:37 +03:00
"build": "webpack --progress -p --colors --display-error-details --config webpack/prod.config.js",
"server-build": "make server-build",
2018-06-28 07:57:37 +03:00
"build-unused": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js --json | webpack-unused -s src",
"cypress": "cypress open",
"test": "cypress run --spec 'cypress/integration/**/**/test.ts' --key $CYPRESS_KEY --parallel --record",
"lint": "eslint -c .eslintrc src --ext .js,.ts,.tsx",
"lint:quiet": "eslint --quiet -c .eslintrc src --ext .js,.ts,.tsx",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\""
2018-06-28 07:57:37 +03:00
},
"lint-staged": {
"*.{js,ts,tsx}": [
2020-06-02 11:14:45 +03:00
"eslint --fix"
2018-06-28 07:57:37 +03:00
],
"*.{js,json,ts,tsx,css,md}": [
2020-06-02 11:14:45 +03:00
"prettier --write"
2018-06-28 07:57:37 +03:00
]
},
2020-04-06 14:23:04 +03:00
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 80,
2020-06-02 11:14:45 +03:00
"tabWidth": 2,
"arrowParens": "avoid"
2020-04-06 14:23:04 +03:00
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/preCommit.js"
2020-04-06 14:23:04 +03:00
}
},
2018-06-28 07:57:37 +03:00
"dependencies": {
2020-06-02 11:14:45 +03:00
"@graphql-codegen/core": "1.13.5",
"@graphql-codegen/typescript": "1.13.5",
"@types/highlight.js": "9.12.4",
2020-10-05 12:01:10 +03:00
"@types/lodash": "^4.14.159",
"@types/sql-formatter": "2.3.0",
"ace-builds": "^1.4.11",
2020-06-02 11:14:45 +03:00
"apollo-link": "1.2.14",
"apollo-link-ws": "1.0.20",
"brace": "0.11.1",
"graphiql": "1.0.0-alpha.0",
"graphiql-code-exporter": "2.0.8",
"graphiql-explorer": "0.6.2",
"graphql": "14.5.8",
"graphql-voyager": "1.0.0-rc.29",
"highlight.js": "9.15.8",
"history": "3.3.0",
"inflection": "1.12.0",
"isomorphic-fetch": "2.2.1",
"jsonwebtoken": "8.5.1",
2020-10-05 12:01:10 +03:00
"jwt-decode": "2.2.0",
"less": "3.11.1",
"moment": "^2.26.0",
"piping": "0.3.2",
"prop-types": "15.7.2",
2020-06-02 11:14:45 +03:00
"react": "16.13.1",
"react-ace": "8.0.0",
2020-06-02 11:14:45 +03:00
"react-autosuggest": "10.0.2",
"react-bootstrap": "0.32.4",
"react-copy-to-clipboard": "5.0.2",
"react-datetime": "^2.16.3",
2020-06-02 11:14:45 +03:00
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-icons": "3.9.0",
"react-modal": "3.11.2",
"react-notification-system-redux": "1.2.0",
"react-progress-bar-plus": "1.3.1",
"react-redux": "5.1.2",
"react-router": "3.2.6",
"react-router-redux": "4.0.8",
"react-select": "2.4.4",
"react-table": "6.11.5",
2020-06-02 11:14:45 +03:00
"react-tabs": "3.1.0",
"react-toggle": "4.1.1",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"sanitize-filename": "1.6.3",
"semver": "5.5.1",
"sql-formatter": "2.3.3",
"styled-components": "5.0.1",
"styled-system": "5.1.5",
2020-06-02 11:14:45 +03:00
"subscriptions-transport-ws": "0.9.16"
2018-06-28 07:57:37 +03:00
},
"devDependencies": {
2020-10-05 12:01:10 +03:00
"@types/jwt-decode": "2.2.1",
2020-06-02 11:14:45 +03:00
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
2020-06-02 11:14:45 +03:00
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.1",
"@babel/preset-env": "7.9.5",
2020-06-02 11:14:45 +03:00
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.9.0",
"@babel/runtime": "7.9.6",
"@types/clean-webpack-plugin": "0.1.3",
"@types/concurrently": "5.1.0",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.3",
"@types/express-session": "1.17.0",
"@types/extract-text-webpack-plugin": "3.0.4",
"@types/file-loader": "4.2.0",
"@types/fork-ts-checker-webpack-plugin": "0.4.5",
"@types/isomorphic-fetch": "0.0.35",
"@types/jquery": "3.3.33",
"@types/mini-css-extract-plugin": "0.9.1",
"@types/node-sass": "4.11.0",
"@types/optimize-css-assets-webpack-plugin": "5.0.1",
"@types/react": "16.9.23",
"@types/react-addons-test-utils": "0.14.25",
"@types/react-bootstrap": "0.32.21",
"@types/react-dom": "16.9.5",
"@types/react-helmet": "5.0.15",
"@types/react-hot-loader": "4.1.1",
"@types/react-notification-system-redux": "1.1.6",
"@types/react-redux": "7.1.7",
"@types/react-router": "3.0.8",
"@types/react-router-redux": "4.0.44",
"@types/react-select": "3.0.12",
"@types/react-toggle": "4.0.2",
"@types/redux-devtools": "3.0.47",
"@types/redux-devtools-dock-monitor": "1.1.33",
"@types/redux-devtools-log-monitor": "1.0.34",
"@types/redux-logger": "3.0.7",
"@types/sinon": "7.5.2",
"@types/styled-components": "5.1.0",
"@types/styled-system": "5.1.9",
"@types/terser-webpack-plugin": "2.2.0",
"@types/unused-files-webpack-plugin": "3.4.1",
"@types/webpack": "4.41.7",
"@types/webpack-bundle-analyzer": "2.13.3",
"@types/webpack-dev-middleware": "3.7.0",
"@types/webpack-hot-middleware": "2.25.0",
"@types/ws": "7.2.3",
2020-08-06 13:33:43 +03:00
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "2.24.0",
"autoprefixer": "9.7.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "5.2.0",
"babel-plugin-styled-components": "1.10.7",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"bootstrap-loader": "2.2.0",
"bootstrap-sass": "3.4.1",
"clean-webpack-plugin": "0.1.19",
"concurrently": "5.2.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"cypress": "4.6.0",
"dotenv": "5.0.1",
"eslint": "6.8.0",
2018-06-28 07:57:37 +03:00
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "6.10.0",
"eslint-loader": "1.9.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "^4.0.4",
"express": "4.17.1",
"extract-hoc": "0.0.5",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"font-awesome": "4.7.0",
2018-06-28 07:57:37 +03:00
"font-awesome-webpack": "0.0.4",
2020-06-02 11:14:45 +03:00
"fork-ts-checker-webpack-plugin": "4.1.3",
"husky": "4.2.3",
"ignore-loader": "0.1.2",
"jquery": "3.5.1",
"less-loader": "4.1.0",
2020-06-02 11:14:45 +03:00
"lint-staged": "10.2.2",
"mini-css-extract-plugin": "0.4.5",
"node-sass": "4.14.1",
"nyc": "15.0.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
2020-06-02 11:14:45 +03:00
"prettier": "2.0.5",
"react-hot-loader": "4.12.21",
"redux-devtools": "3.5.0",
2020-06-02 11:14:45 +03:00
"redux-logger": "3.0.6",
"resolve-url-loader": "2.3.2",
"sass-loader": "7.3.1",
"source-map-loader": "0.2.4",
"style-loader": "0.20.3",
"terser-webpack-plugin": "2.3.5",
"typescript": "3.8.3",
"url-loader": "1.1.2",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-isomorphic-tools": "3.0.6"
2018-06-28 07:57:37 +03:00
},
"engines": {
"node": ">=8.9.1"
2018-06-28 07:57:37 +03:00
}
}