chronograf/ui/package.json

109 lines
3.2 KiB
JSON
Raw Normal View History

2016-09-09 23:10:54 +00:00
{
"name": "chronograf-ui",
"version": "0.0.1",
2016-09-09 23:10:54 +00:00
"private": true,
"license": "proprietary",
"description": "",
"repository": {
"type": "git",
"url": "github:influxdata/enterprise"
2016-09-09 23:10:54 +00:00
},
"scripts": {
"build": "npm run clean && env NODE_ENV=production node_modules/webpack/bin/webpack.js -p --config ./webpack/prodConfig.js",
"build:dev": "node_modules/webpack/bin/webpack.js --config ./webpack/devConfig.js",
"start": "node_modules/webpack/bin/webpack.js -w --config ./webpack/devConfig.js",
2016-09-16 22:10:00 +00:00
"lint": "eslint src/",
2016-09-16 22:32:41 +00:00
"test": "karma start",
2016-10-19 23:47:21 +00:00
"clean": "rm -rf build"
2016-09-09 23:10:54 +00:00
},
"author": "",
2016-09-09 23:10:54 +00:00
"eslintConfig": {
"env": {
"mocha": true
}
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.5.1",
2016-09-16 22:10:00 +00:00
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.2",
"babel-plugin-lodash": "^2.0.1",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
2016-10-18 21:02:17 +00:00
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.1",
"babel-plugin-transform-runtime": "^6.5.0",
2016-09-16 22:31:52 +00:00
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-runtime": "^6.5.0",
"bower": "^1.7.7",
"chai": "^3.5.0",
"core-js": "^2.1.3",
"css-loader": "^0.23.1",
"envify": "^3.4.0",
"enzyme": "^2.4.1",
2016-09-16 22:10:00 +00:00
"eslint": "^3.5.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"hanson": "^1.1.1",
"hson-loader": "^1.0.0",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.6.5",
"jsdom": "^9.0.0",
"json-loader": "^0.5.4",
2016-09-16 22:31:52 +00:00
"karma": "^1.3.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"mustache": "^2.2.1",
"node-sass": "^3.5.3",
"postcss-browser-reporter": "^0.4.0",
"postcss-calc": "^5.2.0",
"postcss-loader": "^0.8.0",
"postcss-reporter": "^1.3.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.0.2",
2016-09-28 17:29:04 +00:00
"resolve-url-loader": "^1.6.0",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"testem": "^1.2.1",
"uglify-js": "^2.6.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.13.1",
2016-09-30 20:16:24 +00:00
"bootstrap": "^3.3.7",
"classnames": "^2.2.3",
"dygraphs": "^1.1.1",
"fixed-data-table": "^0.6.1",
"jquery": "^3.1.0",
"lodash": "^4.3.0",
"moment": "^2.13.0",
"node-uuid": "^1.4.7",
"react": "^15.0.2",
"react-addons-shallow-compare": "^15.0.2",
"react-addons-update": "^15.1.0",
"react-dimensions": "^1.2.0",
"react-dom": "^15.0.2",
"react-grid-layout": "^0.13.9",
"react-onclickoutside": "^5.2.0",
"react-redux": "^4.4.0",
"react-router": "^2.4.1",
"react-sparklines": "^1.4.2",
"redux": "^3.3.1",
"redux-thunk": "^1.0.3",
"updeep": "^0.13.0"
2016-09-09 23:10:54 +00:00
}
}