joyent-portal/ui/package.json

88 lines
2.3 KiB
JSON
Raw Normal View History

2016-10-23 07:27:18 +03:00
{
2017-01-03 15:53:24 +02:00
"name": "@tomgco/joyent-portal-ui",
2017-01-04 21:06:39 +02:00
"version": "0.0.1-2",
2017-01-03 16:30:58 +02:00
"license": "MPL-2.0",
2016-12-06 13:50:24 +02:00
"main": "dist/index.js",
2017-01-18 15:56:55 +02:00
"files": [
"dist/"
],
2016-10-23 07:27:18 +03:00
"scripts": {
2016-12-06 13:50:24 +02:00
"start": "cd docs && npm start",
"lint": "make lint",
"test": "make test",
2016-12-08 14:47:09 +02:00
"build": "make compile",
"storybook": "start-storybook -s ./src/assets,./src/vendor -p 6006",
"build-storybook": "build-storybook"
2016-10-23 07:27:18 +03:00
},
"dependencies": {
2017-01-05 15:48:37 +02:00
"build-array": "^1.0.0",
"chart.js": "^2.4.0",
"chartjs-chart-box-plot": "prerelease",
2016-12-19 14:23:27 +02:00
"color": "^1.0.3",
2017-01-10 13:55:25 +02:00
"d3": "^4.4.1",
2016-10-28 02:37:31 +03:00
"lodash.find": "^4.6.0",
"lodash.first": "^3.0.0",
2016-10-24 23:58:09 +03:00
"lodash.flatten": "^4.4.0",
2016-10-28 02:37:31 +03:00
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.8",
2016-12-06 13:50:24 +02:00
"lodash.isstring": "^4.0.1",
2016-10-28 02:37:31 +03:00
"lodash.isundefined": "^3.0.1",
"moment": "^2.17.1",
"param-case": "^2.1.0",
"random-natural": "^1.0.3",
2017-01-16 21:53:05 +02:00
"react": "^15.4.2",
"react-dom": "^15.4.2",
2017-01-06 17:10:37 +02:00
"react-select": "^1.0.0-rc.2",
"reduce-css-calc": "^1.3.0",
2017-01-16 21:53:05 +02:00
"styled-components": "^1.3.0",
"svg-react-loader": "^0.3.7",
"transform-props-with": "^2.1.0"
2016-10-23 07:27:18 +03:00
},
"devDependencies": {
2017-01-16 21:53:05 +02:00
"@kadira/storybook": "^2.35.3",
2016-12-05 22:03:19 +02:00
"ava": "^0.17.0",
2016-12-06 13:50:24 +02:00
"babel-cli": "^6.18.0",
2016-12-19 14:23:27 +02:00
"babel-core": "^6.21.0",
2016-12-05 22:03:19 +02:00
"babel-eslint": "^7.1.1",
2016-10-23 07:27:18 +03:00
"babel-plugin-syntax-async-functions": "^6.13.0",
2016-12-09 13:00:45 +02:00
"babel-plugin-transform-object-rest-spread": "^6.20.2",
2016-10-23 07:27:18 +03:00
"babel-preset-react": "^6.16.0",
2016-12-05 22:03:19 +02:00
"babel-register": "^6.18.0",
2016-10-25 16:01:42 +03:00
"dangerously-set-inner-html": "2.0.0",
2016-12-22 13:36:41 +02:00
"enzyme": "^2.7.0",
2017-01-16 21:53:05 +02:00
"eslint": "^3.13.1",
2016-10-23 07:27:18 +03:00
"eslint-config-semistandard": "^7.0.0",
2016-12-05 22:03:19 +02:00
"eslint-config-standard": "^6.2.1",
"eslint-plugin-babel": "^4.0.0",
2016-12-19 14:23:27 +02:00
"eslint-plugin-jsx-a11y": "^3.0.2",
2016-12-05 22:03:19 +02:00
"eslint-plugin-promise": "^3.4.0",
2017-01-16 21:53:05 +02:00
"eslint-plugin-react": "^6.9.0",
2016-10-23 07:27:18 +03:00
"eslint-plugin-standard": "^2.0.1",
"jsdom": "^9.9.1",
2016-12-09 13:00:45 +02:00
"memory-fs": "^0.4.1",
"node-hook": "^0.4.0",
2016-12-05 22:03:19 +02:00
"nyc": "^10.0.0",
2016-12-14 00:46:13 +02:00
"pre-commit": "^1.2.2",
2017-01-16 21:53:05 +02:00
"react-addons-test-utils": "^15.4.2",
2016-11-01 17:30:28 +02:00
"st": "^1.2.0",
2017-01-04 21:09:49 +02:00
"stylelint": "^7.7.1",
2016-12-19 14:23:27 +02:00
"stylelint-config-standard": "^15.0.1",
2016-12-09 17:33:24 +02:00
"stylelint-processor-styled-components": "^0.0.4",
2017-01-04 21:09:49 +02:00
"tap-xunit": "^1.5.1"
2016-10-23 07:27:18 +03:00
},
"ava": {
"failFast": true,
"cache": false,
"require": [
"babel-register",
"./test/_hook.js"
2016-10-23 07:27:18 +03:00
],
"babel": "inherit"
},
"pre-commit": [
"lint",
"test",
"coverage"
]
}