forked from cerc-io/laconic-console
116 lines
3.2 KiB
JSON
116 lines
3.2 KiB
JSON
{
|
|
"name": "@dxos/console-server",
|
|
"version": "1.2.4-alpha.2",
|
|
"description": "Kubenet Console Server",
|
|
"main": "dist/es/index.js",
|
|
"bin": {
|
|
"dxos-console": "bin/console.js"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"dist/es"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run clean && npm run build:client && npm run build:server",
|
|
"build:client": "PUBLIC_URL=/console webpack --mode development",
|
|
"build:server": "babel ./src --out-dir ./dist/es --ignore \"**/*.test.js\" --copy-files",
|
|
"clean": "rm -rf ./dist",
|
|
"dev": "VERBOSE=true webpack-dev-server --mode development --watch",
|
|
"lint": "semistandard 'src/**/*.js'",
|
|
"test": "jest --rootDir ./src --passWithNoTests --no-cache",
|
|
"start": "CONFIG_FILE=${CONFIG_FILE=./config.yml} BABEL_DISABLE_CACHE=1 nodemon --exec babel-node src/server/main.js -- --verbose"
|
|
},
|
|
"author": "DXOS.org",
|
|
"license": "GPL-3.0",
|
|
"browserslist": [
|
|
"> 5%"
|
|
],
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
},
|
|
"dependencies": {
|
|
"@babel/polyfill": "^7.8.7",
|
|
"@babel/runtime": "^7.8.7",
|
|
"@dxos/console-app": "^1.2.4-alpha.2",
|
|
"@wirelineio/wns-schema": "^0.1.1",
|
|
"apollo-boost": "^0.4.9",
|
|
"apollo-server-express": "^2.13.1",
|
|
"body-parser": "^1.19.0",
|
|
"compression": "^1.7.4",
|
|
"debug": "^4.1.1",
|
|
"express": "^4.17.1",
|
|
"express-graphql": "^0.9.0",
|
|
"graphql": "^15.0.0",
|
|
"graphql-tag": "^2.10.3",
|
|
"graphql-tools": "^6.0.3",
|
|
"ipfs-http-client": "^44.1.0",
|
|
"js-yaml": "^3.14.0",
|
|
"lodash.defaultsdeep": "^4.6.1",
|
|
"lodash.pick": "^4.4.0",
|
|
"mustache-express": "^1.3.0",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"source-map-support": "^0.5.12",
|
|
"systeminformation": "^4.26.5",
|
|
"tree-kill": "^1.2.2",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"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",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "^8.1.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",
|
|
"eslint": "^6.7.2",
|
|
"eslint-config-semistandard": "^15.0.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-loader": "^3.0.3",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-jest": "^23.13.1",
|
|
"eslint-plugin-jsdoc": "^21.0.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"jest": "^24.8.0",
|
|
"nodemon": "^2.0.4",
|
|
"semistandard": "^14.2.0",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-merge": "^4.2.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "babel-eslint",
|
|
"extends": [
|
|
"plugin:jest/recommended",
|
|
"semistandard"
|
|
],
|
|
"plugins": [
|
|
"babel"
|
|
],
|
|
"rules": {
|
|
"babel/semi": 1
|
|
}
|
|
},
|
|
"semistandard": {
|
|
"parser": "babel-eslint",
|
|
"env": [
|
|
"jest",
|
|
"node",
|
|
"browser"
|
|
]
|
|
}
|
|
}
|