hyper/app/package.json

81 lines
1.8 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
"name": "hyperterm-web",
"version": "0.0.1",
2016-07-13 12:44:24 -08:00
"description": "Web app that runs in the renderer process",
"license": "MIT",
"repository": "zeit/hyperterm",
2016-06-30 22:01:04 -08:00
"dependencies": {
"aphrodite-simple": "0.4.1",
2016-07-21 11:07:19 -08:00
"color": "^0.11.3",
2016-07-20 14:22:09 -08:00
"hterm-umdjs": "1.1.3",
2016-07-03 12:35:45 -08:00
"json-loader": "0.5.4",
"mousetrap": "1.6.0",
"ms": "0.7.1",
2016-07-13 12:44:24 -08:00
"object-values": "1.0.0",
"react": "15.2.1",
2016-07-13 12:44:24 -08:00
"react-addons-pure-render-mixin": "15.2.1",
"react-deep-force-update": "2.0.1",
"react-dom": "15.2.1",
2016-07-13 12:44:24 -08:00
"react-redux": "4.4.5",
"redux": "3.5.2",
"redux-thunk": "2.1.0",
"reselect": "2.5.3",
"seamless-immutable": "6.1.1"
2016-06-30 22:01:04 -08:00
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
2016-07-20 14:22:09 -08:00
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-preset-es2015-native-modules": "6.9.0",
2016-07-13 12:44:24 -08:00
"babel-preset-react": "6.11.1",
2016-07-20 14:22:09 -08:00
"eslint": "3.1.1",
"eslint-config-standard": "5.3.5",
2016-07-20 14:22:09 -08:00
"eslint-plugin-promise": "2.0.0",
"eslint-plugin-react": "5.2.2",
2016-07-20 14:22:09 -08:00
"eslint-plugin-standard": "2.0.0",
2016-07-13 12:44:24 -08:00
"webpack": "2.1.0-beta.15"
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": {
2016-07-13 12:44:24 -08:00
"presets": [
"es2015-native-modules",
2016-07-13 12:44:24 -08:00
"react"
2016-06-30 22:01:04 -08:00
]
},
"scripts": {
"dev": "webpack --watch",
2016-07-20 14:21:29 -08:00
"lint": "eslint .",
"build": "NODE_ENV=production webpack",
"test": "npm run lint"
2016-06-30 22:01:04 -08:00
}
2016-07-01 13:31:23 -08:00
}