2020-05-23 17:13:45 +00:00
|
|
|
{
|
|
|
|
"name": "@dxos/console-server",
|
|
|
|
"version": "1.0.0-beta.0",
|
|
|
|
"description": "DxOS Console Server",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "semistandard 'src/**/*.js'",
|
|
|
|
"test": "jest --rootDir ./src --passWithNoTests --no-cache",
|
|
|
|
"start": "nodemon --exec babel-node ./src/main.js"
|
|
|
|
},
|
|
|
|
"author": "DxOS.org",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"browserslist": [
|
|
|
|
"> 5%"
|
|
|
|
],
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@babel/runtime": "^7.8.7",
|
|
|
|
"@dxos/console-client": "^1.0.0-beta.0",
|
|
|
|
"apollo-boost": "^0.4.9",
|
|
|
|
"apollo-server-express": "^2.13.1",
|
|
|
|
"debug": "^4.1.1",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"express-graphql": "^0.9.0",
|
|
|
|
"graphql": "^15.0.0",
|
|
|
|
"graphql-tag": "^2.10.3",
|
2020-05-23 18:36:15 +00:00
|
|
|
"react-dom": "^16.13.1",
|
2020-05-23 17:13:45 +00:00
|
|
|
"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",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.5.2",
|
|
|
|
"@babel/preset-env": "^7.4.5",
|
2020-05-23 21:21:27 +00:00
|
|
|
"babel-eslint": "^10.0.3",
|
2020-05-23 17:13:45 +00:00
|
|
|
"babel-jest": "^24.8.0",
|
|
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
|
|
|
"babel-plugin-inline-import": "^3.0.0",
|
2020-05-23 21:21:27 +00:00
|
|
|
"eslint": "^6.7.2",
|
|
|
|
"eslint-loader": "^3.0.3",
|
|
|
|
"eslint-config-semistandard": "^15.0.0",
|
|
|
|
"eslint-config-standard": "^14.1.1",
|
2020-05-23 17:13:45 +00:00
|
|
|
"eslint-plugin-babel": "^5.3.0",
|
2020-05-23 21:21:27 +00:00
|
|
|
"eslint-plugin-import": "^2.18.2",
|
2020-05-23 17:13:45 +00:00
|
|
|
"eslint-plugin-jest": "^23.13.1",
|
2020-05-23 21:21:27 +00:00
|
|
|
"eslint-plugin-jsdoc": "^21.0.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-05-23 17:13:45 +00:00
|
|
|
"jest": "^24.8.0",
|
|
|
|
"nodemon": "^2.0.4",
|
|
|
|
"semistandard": "^14.2.0"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2020-05-23 20:16:35 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"extends": [
|
|
|
|
"plugin:jest/recommended",
|
2020-05-23 21:21:27 +00:00
|
|
|
"semistandard"
|
2020-05-23 20:16:35 +00:00
|
|
|
],
|
|
|
|
"plugins": [
|
2020-05-23 21:21:27 +00:00
|
|
|
"babel"
|
2020-05-23 20:16:35 +00:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"babel/semi": 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"semistandard": {
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"env": [
|
|
|
|
"jest",
|
|
|
|
"node",
|
|
|
|
"browser"
|
|
|
|
]
|
2020-05-23 17:13:45 +00:00
|
|
|
}
|
|
|
|
}
|