influxdb/ui/package.json

157 lines
4.4 KiB
JSON
Raw Normal View History

2016-09-09 23:10:54 +00:00
{
"name": "chronograf-ui",
"version": "2.0",
2016-11-08 23:23:42 +00:00
"private": false,
2016-11-11 00:22:04 +00:00
"license": "AGPL-3.0",
"description": "",
"repository": {
"type": "git",
2016-11-08 23:23:42 +00:00
"url": "github:influxdata/chronograf"
2016-09-09 23:10:54 +00:00
},
"alias": {
"src": "./src"
},
2016-09-09 23:10:54 +00:00
"scripts": {
"start": "yarn install -s && parcel watch -d build src/index.html",
2018-10-22 22:38:31 +00:00
"build": "parcel build -d build --no-source-maps --log-level 2 src/index.html",
"clean": "rm -rf ./build && rm -rf ./.cache && rm -rf node_modules",
2018-03-03 03:50:51 +00:00
"test": "jest",
2018-02-27 15:38:07 +00:00
"test:watch": "jest --watch",
2018-10-22 22:38:31 +00:00
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
2018-11-07 17:06:02 +00:00
"lint": "yarn run tslint && yarn run tsc",
"tslint": "tslint -c ./tslint.json '{src,test}/**/*.ts?(x)'",
2018-03-23 18:08:06 +00:00
"tslint:fix": "tslint --fix -c ./tslint.json '{src,test}/**/*.ts?(x)'",
"tsc": "tsc -p ./tsconfig.json --noEmit --pretty",
"tsc:watch": "tsc -p ./tsconfig.json --noEmit --pretty -w"
2016-09-09 23:10:54 +00:00
},
"jest": {
"displayName": "test",
"testURL": "http://localhost",
"testPathIgnorePatterns": [
"build",
"<rootDir>/node_modules/(?!(jest-test))"
],
2018-10-22 22:38:31 +00:00
"setupFiles": [
"<rootDir>/testSetup.ts"
],
"modulePaths": [
"<rootDir>",
"<rootDir>/node_modules/"
],
"moduleDirectories": [
"src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.(ts?|tsx?)$",
2018-10-22 22:38:31 +00:00
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"author": "",
"devDependencies": {
2018-05-10 19:11:10 +00:00
"@types/chroma-js": "^1.3.4",
"@types/codemirror": "^0.0.56",
"@types/d3-color": "^1.2.1",
2018-06-22 20:23:34 +00:00
"@types/d3-scale": "^2.0.1",
2018-04-12 18:10:19 +00:00
"@types/dygraphs": "^1.1.6",
2018-10-22 22:38:31 +00:00
"@types/encoding-down": "^5.0.0",
"@types/enzyme": "^3.1.14",
"@types/history": "3.2.2",
"@types/jest": "^23.3.2",
2018-10-22 22:38:31 +00:00
"@types/levelup": "^3.1.0",
"@types/lodash": "^4.14.116",
"@types/node": "^9.4.6",
"@types/papaparse": "^4.1.34",
2018-03-02 05:32:53 +00:00
"@types/prop-types": "^15.5.2",
2018-07-02 23:18:07 +00:00
"@types/qs": "^6.5.1",
"@types/react": "^16.4.14",
2018-04-11 01:32:28 +00:00
"@types/react-dnd": "^2.0.36",
"@types/react-dnd-html5-backend": "^2.1.9",
feat(platform): move chronogaf v2 dashboards to platform test(testing): add tests for dashboards and cells test(bolt): all conformance tests for dashbaords and cells fix(bolt): rename dashboardV2Bucket to dashboardBucket feat(chronograf): introduce v2 dashboards Co-authored-by: Andrew Watkins <andrew.watkinz@gmail.com> Co-authored-by: Michael Desa <mjdesa@gmail.com> chore(chronograf): add tests for v2 dashboard reducer Co-authored-by: Andrew Watkins <andrew.watkinz@gmail.com> Co-authored-by: Michael Desa <mjdesa@gmail.com> chore(chronograf): create dashboard from dashboard index Co-authored-by: Andrew Watkins <andrew.watkinz@gmail.com> Co-authored-by: Michael Desa <mjdesa@gmail.com> chore(chronograf): move tests to same level of heirarchy as file tested chronograf(chore): implement import dashboard with v2 api chore(chronograf): delete dashboards from v2 api chore(chronograf): add source health handler chore(chronograf): move sources reducer to sources dir chore(chronograf): remove stutter in notify WIP stop namespacing by sourceID chore(chronograf): no longer namespace routes under sources/:sourceID WIP move dashtimeV1 to ranges WIP remove CEO chrore(chronograf): WIP Remove CEO and QueryMaker chore(chronograf): introduce updateDashboard v2 chore(chronograf): Change cell to view A dashboard's cell object now only contains positional information for the cell in it's grid and a reference to the cell's view data. A cell's view contains all necessary information for the cell's visualization. Add react-grid-layout types chore(chronograf): introduce add cell chore(chronograf): fix type errors Not on DashboardPage feat(platform): add cell methods to dashboard service interface feat(mock): update dashboard service with cell methods feat(testing): add cell methods to testing package feat(bolt): add dashboard cell methods to bolt dashbaord service feat(http): add cell routes to dashbaord handler feat(platform): add dependent create/destroy of views from cells chore(chronograf): introduce update dashboard cells endpoint WIP update cells FE fix(http): rename Cells to cells on dashboard cells response chore(chronograf): re-introduce dashboard cell dragging feat(platform): add copy dashboard cell to dashboard service chore(platform): rename cell to view across codebase feat(bolt): add replace dashboard tests Move Layouts to Cells Introduce delete cell Fix broken test fix(platform): update route for copying a a dashboard cell UI for delete cell Introduce copy cell feat(platform): add copy view options to AddDashboardCell feat(bolt): delete views when dashboard is removed. Cleanup Fix type errors Fix links not updating Remove annotations from RefreshingGraph Sources and types work fix(platform): add TODO.go files back fix(view): rename visualizationType to type in view JSON Co-authored-by: Deniz Kusefoglu <deniz@influxdata.com> Co-authored-by: Michael Desa <mjdesa@gmail.com> fix(dashboardTime): change dashboardID to string Co-authored-by: Deniz Kusefoglu <deniz@influxdata.com> Co-authored-by: Michael Desa <mjdesa@gmail.com> feat(http): add dashboard api to swagger documentation review(http): fix comments and function naming feat(http): update sources swagger documentation review(http): update the swagger to reflect the implementation feat(platform): add usingView options to POST /dashboard/:id/cells
2018-08-07 20:10:05 +00:00
"@types/react-grid-layout": "^0.16.5",
"@types/react-redux": "^6.0.9",
2018-04-11 00:20:01 +00:00
"@types/react-router": "^3.0.15",
"@types/react-router-redux": "^4.0.0",
2018-05-10 19:11:10 +00:00
"@types/react-virtualized": "^9.18.3",
"@types/text-encoding": "^0.0.32",
2018-05-10 19:11:10 +00:00
"@types/uuid": "^3.4.3",
"autoprefixer": "^6.3.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.6.0",
2018-06-27 20:15:06 +00:00
"enzyme-to-json": "^3.3.4",
"express": "^4.14.0",
"http-proxy-middleware": "^0.18.0",
2018-07-09 22:59:20 +00:00
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
2018-06-01 20:59:49 +00:00
"jest-runner-tslint": "^1.0.4",
"jsdom": "^9.0.0",
"node-sass": "^4.9.3",
"parcel": "^1.10.2",
feat(org-view): Chronograf OrgView (#1101) * Move organization type definition to own file Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organizations link in side nav Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organization routes Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add Organization index and view Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Introduce OrgView * Fix type errors * WIP rudimentary view of Org resources * Add spinner wrapper component Will make this more awesome later Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Render all org resources in list views with empty states Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Upgrade prettier and tslint configs * Add back spinners * Add createOrg API * Introduce CreateOrgOverlay * Move org actions and reducer to org dir * Add autocomplete option to clockface Input * Implements CreateOrg from OrgIndex * Introduce delete org from OrgIndex * Remove CHANGELOG * Start OrgOptions * Add Profile Page Header subcomponent * Make index list items lighter when nested * Add filter and create UI to buckets list * Slightly modify appearance of overlays * Implement update org options tab * Introduce createBucket in org view Waiting on https://github.com/influxdata/platform/issues/1118 for the API to accept milliseconds as retentionPolicies * WIP introduce Filter component * Fix linter warnings * Introduce filter dashboards * Implement filter and task list * Add spinner to member list in org view * Use new index list
2018-10-23 15:53:15 +00:00
"prettier": "^1.14.3",
"ts-jest": "^23.10.3",
"tslib": "^1.9.0",
2018-03-21 21:01:47 +00:00
"tslint": "^5.9.1",
feat(org-view): Chronograf OrgView (#1101) * Move organization type definition to own file Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organizations link in side nav Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add organization routes Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Add Organization index and view Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Introduce OrgView * Fix type errors * WIP rudimentary view of Org resources * Add spinner wrapper component Will make this more awesome later Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Render all org resources in list views with empty states Co-Authored-By: Andrew Watkins <121watts@users.noreply.github.com> * Upgrade prettier and tslint configs * Add back spinners * Add createOrg API * Introduce CreateOrgOverlay * Move org actions and reducer to org dir * Add autocomplete option to clockface Input * Implements CreateOrg from OrgIndex * Introduce delete org from OrgIndex * Remove CHANGELOG * Start OrgOptions * Add Profile Page Header subcomponent * Make index list items lighter when nested * Add filter and create UI to buckets list * Slightly modify appearance of overlays * Implement update org options tab * Introduce createBucket in org view Waiting on https://github.com/influxdata/platform/issues/1118 for the API to accept milliseconds as retentionPolicies * WIP introduce Filter component * Fix linter warnings * Introduce filter dashboards * Implement filter and task list * Add spinner to member list in org view * Use new index list
2018-10-23 15:53:15 +00:00
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
2018-03-21 21:01:47 +00:00
"tslint-react": "^3.5.1",
"typescript": "^3.1.3"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
2017-08-28 18:58:04 +00:00
"bignumber.js": "^4.0.2",
"calculate-size": "^1.1.1",
2018-03-26 23:23:46 +00:00
"chroma-js": "^1.3.6",
"classnames": "^2.2.3",
2018-04-13 21:58:47 +00:00
"codemirror": "^5.36.0",
"d3-color": "^1.2.0",
2018-06-22 20:23:34 +00:00
"d3-scale": "^2.1.0",
2017-12-08 22:33:03 +00:00
"dygraphs": "2.1.0",
2018-10-22 22:38:31 +00:00
"encoding-down": "^5.0.4",
"fast.js": "^0.1.1",
"history": "^3.2",
2018-10-22 22:38:31 +00:00
"level-js": "^3.0.0",
"levelup": "^3.1.1",
"lodash": "^4.3.0",
"memoize-one": "^4.0.2",
"moment": "^2.13.0",
"nano-date": "^2.0.1",
"papaparse": "^4.4.0",
2018-02-27 16:45:38 +00:00
"prop-types": "^15.6.1",
2018-07-02 23:18:07 +00:00
"qs": "^6.5.2",
2018-09-25 17:39:06 +00:00
"react": "^15.0.0 || ^16.0.0",
2018-04-13 21:58:47 +00:00
"react-codemirror2": "^4.2.1",
"react-copy-to-clipboard": "^5.0.1",
"react-custom-scrollbars": "^4.1.1",
"react-dimensions": "^1.2.0",
2018-04-05 22:03:56 +00:00
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
2018-04-18 06:54:54 +00:00
"react-dom": "^16.3.1",
"react-grid-layout": "^0.16.6",
"react-markdown": "^4.0.3",
"react-redux": "^5.0.7",
2018-05-14 20:08:51 +00:00
"react-resize-detector": "^2.3.0",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
2016-11-11 19:25:34 +00:00
"react-tooltip": "^3.2.1",
2018-02-27 22:21:46 +00:00
"react-virtualized": "^9.18.5",
"redux": "^4.0.0",
"redux-auth-wrapper": "^1.0.0",
"redux-thunk": "^1.0.3",
2017-03-28 23:20:34 +00:00
"rome": "^2.1.22",
"uuid": "^3.2.1"
2016-09-09 23:10:54 +00:00
}
}