hyper/app/package.json

72 lines
1.5 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
"name": "hyperterm-web",
"version": "0.0.1",
"description": "",
"dependencies": {
"classnames": "2.2.5",
2016-07-03 12:35:45 -08:00
"hterm-umd": "1.0.1",
"json-loader": "0.5.4",
"mousetrap": "1.6.0",
2016-06-30 22:01:04 -08:00
"react": "15.1.0",
2016-07-03 12:35:45 -08:00
"react-addons-shallow-compare": "15.1.0",
2016-07-01 12:01:33 -08:00
"react-dom": "15.1.0",
2016-07-03 12:35:45 -08:00
"semver-compare": "1.0.0"
2016-06-30 22:01:04 -08:00
},
"devDependencies": {
"eslint": "2.13.1",
"eslint-config-standard": "5.3.1",
"babel-eslint": "6.1.0",
"eslint-plugin-react": "5.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
"babel-cli": "6.10.1",
"babel-loader": "6.2.4",
"babel-core": "6.10.4",
"style-loader": "0.13.1",
"css-loader": "0.23.1",
"eslint-plugin-standard": "1.3.2",
2016-07-01 13:31:23 -08:00
"eslint-plugin-promise": "1.3.2",
"webpack": "1.13.1",
"babel-plugin-transform-react-jsx": "6.8.0"
2016-06-30 22:01:04 -08:00
},
"eslintConfig": {
"extends": "standard",
"plugins": [
"react"
],
"rules": {
"yoda": 0,
2016-07-01 12:01:33 -08:00
"semi": [
2,
"always"
],
2016-06-30 22:01:04 -08:00
"no-unused-vars": 2,
"no-extra-semi": 2,
2016-07-01 12:01:33 -08:00
"semi-spacing": [
2,
{
"before": false,
"after": true
}
],
2016-06-30 22:01:04 -08:00
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
}
},
"babel": {
"plugins": [
"transform-react-jsx",
"transform-es2015-modules-commonjs"
]
},
"scripts": {
"dev": "webpack --watch",
"lint": "eslint *.js",
"build": "NODE_ENV=production webpack"
}
2016-07-01 13:31:23 -08:00
}