2020-08-04 03:38:17 +03:00
|
|
|
{
|
2020-08-08 10:09:23 +03:00
|
|
|
"name": "responsible-ai",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"affected": "nx affected",
|
|
|
|
"affected:apps": "nx affected:apps",
|
2020-08-17 21:58:46 +03:00
|
|
|
"affected:build": "nx affected:build",
|
2020-08-08 10:09:23 +03:00
|
|
|
"affected:dep-graph": "nx affected:dep-graph",
|
|
|
|
"affected:e2e": "nx affected:e2e",
|
|
|
|
"affected:libs": "nx affected:libs",
|
2020-08-11 06:37:08 +03:00
|
|
|
"affected:lint": "cross-env NODE_OPTIONS=--max_old_space_size=4096 nx affected:lint",
|
2020-08-08 10:09:23 +03:00
|
|
|
"affected:test": "nx affected:test",
|
2020-08-17 21:58:46 +03:00
|
|
|
"build": "nx build",
|
|
|
|
"buildall": "nx run-many --target=build --all",
|
2020-08-11 06:37:08 +03:00
|
|
|
"ci": "yarn install --frozen-lock-file && yarn testall --codeCoverage && yarn lintall && yarn e2eall && yarn buildall",
|
2020-08-08 10:09:23 +03:00
|
|
|
"dep-graph": "nx dep-graph",
|
|
|
|
"e2e": "nx e2e",
|
2020-08-11 06:37:08 +03:00
|
|
|
"e2eall": "nx run-many --target=e2e --all",
|
2020-08-08 10:09:23 +03:00
|
|
|
"format": "nx format:write",
|
|
|
|
"format:check": "nx format:check",
|
|
|
|
"format:write": "nx format:write",
|
|
|
|
"help": "nx help",
|
2020-08-11 06:37:08 +03:00
|
|
|
"kill": "taskkill /IM:2.43-x64-chromedriver /F & taskkill /IM:node.exe /F",
|
|
|
|
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=4096 nx lint",
|
2020-08-08 10:09:23 +03:00
|
|
|
"lintall": "nx workspace-lint && cross-env NODE_OPTIONS=--max_old_space_size=4096 nx run-many --target=lint --all && yarn prettier . --check",
|
|
|
|
"lintfix": "nx workspace-lint && cross-env NODE_OPTIONS=--max_old_space_size=4096 nx run-many --target=lint --all --fix && yarn prettier . --write",
|
|
|
|
"nx": "nx",
|
|
|
|
"start": "nx serve",
|
2020-08-12 19:49:14 +03:00
|
|
|
"startprod": "serve ./dist/apps/dashboard -s",
|
2020-08-08 10:09:23 +03:00
|
|
|
"test": "nx test",
|
|
|
|
"testall": "nx run-many --target=test --all",
|
|
|
|
"update": "nx migrate latest",
|
|
|
|
"workspace-schematic": "nx workspace-schematic"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-14 00:09:38 +03:00
|
|
|
"jmespath": "^0.15.0",
|
|
|
|
"localized-strings": "^0.2.4",
|
|
|
|
"lodash": "^4.17.11",
|
|
|
|
"memoize-one": "^5.1.1",
|
|
|
|
"moment": "^2.24.0",
|
|
|
|
"office-ui-fabric-react": "^7.117.0",
|
|
|
|
"plotly.js": "^1.48.0",
|
|
|
|
"react": "^16.12.0",
|
|
|
|
"react-dom": "^16.12.0",
|
|
|
|
"react-router-dom": "^5.0.0",
|
|
|
|
"uuid": "^3.3.2"
|
2020-08-08 10:09:23 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-11 06:37:08 +03:00
|
|
|
"@babel/core": "7.11.1",
|
2020-08-08 10:09:23 +03:00
|
|
|
"@babel/preset-env": "7.11.0",
|
|
|
|
"@babel/preset-react": "7.10.4",
|
|
|
|
"@babel/preset-typescript": "7.10.4",
|
2020-08-11 06:37:08 +03:00
|
|
|
"@nrwl/cypress": "10.0.10",
|
|
|
|
"@nrwl/eslint-plugin-nx": "10.0.10",
|
|
|
|
"@nrwl/jest": "10.0.10",
|
|
|
|
"@nrwl/react": "10.0.10",
|
|
|
|
"@nrwl/web": "10.0.10",
|
|
|
|
"@nrwl/workspace": "10.0.10",
|
|
|
|
"@types/enzyme": "3.10.5",
|
|
|
|
"@types/enzyme-adapter-react-16": "1.0.6",
|
|
|
|
"@types/enzyme-to-json": "1.5.3",
|
|
|
|
"@types/jest": "26.0.9",
|
|
|
|
"@types/lodash": "4.14.159",
|
2020-08-08 10:09:23 +03:00
|
|
|
"@types/memoize-one": "5.1.2",
|
2020-08-11 06:37:08 +03:00
|
|
|
"@types/node": "14.0.27",
|
2020-08-12 19:49:14 +03:00
|
|
|
"@types/plotly.js": "1.50.16",
|
2020-08-11 06:37:08 +03:00
|
|
|
"@types/react": "16.9.46",
|
2020-08-08 10:09:23 +03:00
|
|
|
"@types/react-dom": "16.9.8",
|
|
|
|
"@types/react-router-dom": "5.1.5",
|
2020-08-11 06:37:08 +03:00
|
|
|
"@types/uuid": "8.0.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "3.9.0",
|
|
|
|
"@typescript-eslint/parser": "3.9.0",
|
|
|
|
"babel-jest": "26.3.0",
|
2020-08-08 10:09:23 +03:00
|
|
|
"cross-env": "7.0.2",
|
2020-08-11 06:37:08 +03:00
|
|
|
"cypress": "4.12.1",
|
2020-08-08 10:09:23 +03:00
|
|
|
"dotenv": "8.2.0",
|
2020-08-11 06:37:08 +03:00
|
|
|
"enzyme": "3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "1.15.3",
|
|
|
|
"enzyme-to-json": "3.5.0",
|
2020-08-08 10:09:23 +03:00
|
|
|
"eslint": "7.6.0",
|
|
|
|
"eslint-config-prettier": "6.11.0",
|
2020-08-11 06:37:08 +03:00
|
|
|
"eslint-plugin-cypress": "2.11.1",
|
2020-08-15 08:08:21 +03:00
|
|
|
"eslint-plugin-filenames": "1.3.2",
|
2020-08-08 10:09:23 +03:00
|
|
|
"eslint-plugin-import": "2.22.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.3.1",
|
|
|
|
"eslint-plugin-react": "7.20.5",
|
|
|
|
"eslint-plugin-react-hooks": "4.0.8",
|
2020-08-11 06:37:08 +03:00
|
|
|
"jest": "26.3.0",
|
|
|
|
"jest-canvas-mock": "2.2.0",
|
2020-08-08 10:09:23 +03:00
|
|
|
"prettier": "2.0.5",
|
|
|
|
"prettier-plugin-packagejson": "2.2.5",
|
2020-08-12 19:49:14 +03:00
|
|
|
"serve": "11.3.2",
|
2020-08-08 10:09:23 +03:00
|
|
|
"ts-jest": "26.1.4",
|
2020-08-11 06:37:08 +03:00
|
|
|
"ts-node": "8.10.2",
|
|
|
|
"tslint": "6.1.3",
|
|
|
|
"typescript": "3.9.7"
|
2020-08-08 10:09:23 +03:00
|
|
|
}
|
2020-08-04 03:38:17 +03:00
|
|
|
}
|