2016-08-25 01:56:44 +10:00
|
|
|
{
|
|
|
|
"name": "mastodon",
|
2017-04-20 21:29:38 +10:00
|
|
|
"license": "AGPL-3.0",
|
2016-10-10 13:01:10 +11:00
|
|
|
"scripts": {
|
2017-04-26 09:51:51 +10:00
|
|
|
"postversion": "git push --tags",
|
2017-05-03 10:04:16 +10:00
|
|
|
"manage:translations": "node ./config/webpack/translationRunner.js",
|
2017-04-15 21:27:27 +10:00
|
|
|
"start": "babel-node ./streaming/index.js --presets es2015,stage-2",
|
2017-02-02 11:31:09 +11:00
|
|
|
"storybook": "start-storybook -p 9001 -c storybook",
|
2017-04-15 21:27:27 +10:00
|
|
|
"test": "npm run test:lint && npm run test:mocha",
|
2017-05-03 10:04:16 +10:00
|
|
|
"test:lint": "eslint -c .eslintrc.json --ext=js --ext=jsx app/javascript/",
|
2017-04-15 21:27:27 +10:00
|
|
|
"test:mocha": "mocha --require ./spec/javascript/setup.js --compilers js:babel-register ./spec/javascript/components/*.test.jsx"
|
2016-10-10 13:01:10 +11:00
|
|
|
},
|
2017-04-26 09:51:51 +10:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/tootsuite/mastodon.git"
|
|
|
|
},
|
2017-01-12 01:39:31 +11:00
|
|
|
"dependencies": {
|
2017-05-03 10:04:16 +10:00
|
|
|
"autoprefixer": "^6.7.7",
|
2017-02-26 11:23:44 +11:00
|
|
|
"axios": "^0.15.3",
|
|
|
|
"babel-cli": "^6.23.0",
|
2017-05-03 10:04:16 +10:00
|
|
|
"babel-core": "^6.24.1",
|
|
|
|
"babel-loader": "7.x",
|
|
|
|
"babel-plugin-react-intl": "^2.3.1",
|
2016-09-01 00:15:12 +10:00
|
|
|
"babel-plugin-react-transform": "^2.0.2",
|
2016-11-24 04:53:23 +11:00
|
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
2017-02-26 11:23:44 +11:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.23.0",
|
2017-05-03 10:04:16 +10:00
|
|
|
"babel-plugin-transform-react-constant-elements": "^6.23.0",
|
|
|
|
"babel-plugin-transform-react-inline-elements": "^6.22.0",
|
|
|
|
"babel-plugin-transform-react-jsx-self": "^6.22.0",
|
|
|
|
"babel-plugin-transform-react-jsx-source": "^6.22.0",
|
|
|
|
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
|
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.3",
|
|
|
|
"babel-preset-env": "^1.4.0",
|
2017-02-02 11:31:09 +11:00
|
|
|
"babel-preset-es2015": "^6.22.0",
|
2016-08-25 01:56:44 +10:00
|
|
|
"babel-preset-react": "^6.11.1",
|
2017-02-02 11:31:09 +11:00
|
|
|
"babel-preset-stage-2": "^6.22.0",
|
2017-02-26 11:23:44 +11:00
|
|
|
"bufferutil": "^2.0.1",
|
2017-05-03 10:04:16 +10:00
|
|
|
"coffee-loader": "^0.7.3",
|
|
|
|
"coffee-script": "^1.12.5",
|
|
|
|
"compression-webpack-plugin": "^0.4.0",
|
|
|
|
"css-loader": "^0.28.0",
|
2017-02-02 11:31:09 +11:00
|
|
|
"dotenv": "^4.0.0",
|
2017-03-30 07:27:24 +11:00
|
|
|
"emojione": "^2.2.7",
|
2017-04-23 01:28:02 +10:00
|
|
|
"emojione-picker": "^2.1.2",
|
2016-08-26 03:52:55 +10:00
|
|
|
"es6-promise": "^3.2.1",
|
2017-02-26 11:34:56 +11:00
|
|
|
"escape-html": "^1.0.3",
|
2017-02-02 23:56:14 +11:00
|
|
|
"eventsource": "^0.2.1",
|
2017-02-02 11:31:09 +11:00
|
|
|
"express": "^4.14.1",
|
2017-05-03 10:04:16 +10:00
|
|
|
"extract-text-webpack-plugin": "^2.1.0",
|
|
|
|
"file-loader": "^0.11.1",
|
|
|
|
"font-awesome": "^4.7.0",
|
|
|
|
"glob": "^7.1.1",
|
2017-04-12 06:53:58 +10:00
|
|
|
"http-link-header": "^0.8.0",
|
2016-08-25 01:56:44 +10:00
|
|
|
"immutable": "^3.8.1",
|
2016-11-24 04:53:23 +11:00
|
|
|
"intl": "^1.2.5",
|
2017-05-03 10:04:16 +10:00
|
|
|
"jquery-ujs": "^1.2.2",
|
|
|
|
"js-yaml": "^3.8.3",
|
2017-04-20 21:29:38 +10:00
|
|
|
"node-sass": "^4.5.2",
|
2017-02-02 23:56:14 +11:00
|
|
|
"npmlog": "^4.0.2",
|
2017-05-03 10:04:16 +10:00
|
|
|
"path-complete-extname": "^0.1.0",
|
2017-02-02 11:31:09 +11:00
|
|
|
"pg": "^6.1.2",
|
2017-05-03 10:04:16 +10:00
|
|
|
"postcss-loader": "^1.3.3",
|
|
|
|
"postcss-smart-import": "^0.6.12",
|
|
|
|
"precss": "^1.4.0",
|
2017-04-22 04:05:35 +10:00
|
|
|
"prop-types": "^15.5.8",
|
2017-05-04 23:52:08 +10:00
|
|
|
"punycode": "^2.1.0",
|
2017-05-03 10:04:16 +10:00
|
|
|
"rails-erb-loader": "^5.0.0",
|
2017-04-22 04:05:35 +10:00
|
|
|
"react": "^15.5.4",
|
2017-02-26 11:23:44 +11:00
|
|
|
"react-addons-perf": "^15.4.2",
|
2017-04-22 04:05:35 +10:00
|
|
|
"react-addons-shallow-compare": "^15.5.2",
|
2016-11-24 04:53:23 +11:00
|
|
|
"react-autosuggest": "^7.0.1",
|
|
|
|
"react-decoration": "^1.4.0",
|
2017-04-22 04:05:35 +10:00
|
|
|
"react-dom": "^15.5.4",
|
2017-01-16 22:04:02 +11:00
|
|
|
"react-imageloader": "^2.1.0",
|
2016-08-25 01:56:44 +10:00
|
|
|
"react-immutable-proptypes": "^2.1.0",
|
2017-05-03 10:04:16 +10:00
|
|
|
"react-immutable-pure-component": "^0.0.4",
|
2016-11-24 04:53:23 +11:00
|
|
|
"react-intl": "^2.1.5",
|
|
|
|
"react-motion": "^0.4.5",
|
2017-02-26 11:23:44 +11:00
|
|
|
"react-notification": "^6.6.0",
|
2016-10-10 13:01:10 +11:00
|
|
|
"react-proxy": "^1.1.8",
|
2017-04-22 04:05:35 +10:00
|
|
|
"react-redux": "^5.0.4",
|
2017-02-26 11:23:44 +11:00
|
|
|
"react-redux-loading-bar": "2.4.1",
|
2016-09-11 02:36:48 +10:00
|
|
|
"react-router": "^2.8.0",
|
2016-11-24 04:53:23 +11:00
|
|
|
"react-router-scroll": "^0.3.2",
|
2016-09-28 07:12:33 +10:00
|
|
|
"react-simple-dropdown": "^1.1.4",
|
2016-12-15 04:21:31 +11:00
|
|
|
"react-storybook-addon-intl": "^0.1.0",
|
2017-04-22 04:05:35 +10:00
|
|
|
"react-test-renderer": "^15.5.4",
|
2016-12-15 04:21:31 +11:00
|
|
|
"react-toggle": "^2.1.1",
|
2017-02-02 11:31:09 +11:00
|
|
|
"redis": "^2.6.5",
|
2017-01-07 08:09:55 +11:00
|
|
|
"redux": "^3.6.0",
|
2017-02-26 11:23:44 +11:00
|
|
|
"redux-immutable": "^3.1.0",
|
|
|
|
"redux-thunk": "^2.2.0",
|
2016-10-11 07:44:06 +11:00
|
|
|
"reselect": "^2.5.4",
|
2017-05-03 10:04:16 +10:00
|
|
|
"sass-loader": "^6.0.3",
|
2016-12-15 04:21:31 +11:00
|
|
|
"sinon": "^1.17.6",
|
2017-04-26 01:37:51 +10:00
|
|
|
"stringz": "^0.1.2",
|
2017-05-03 10:04:16 +10:00
|
|
|
"style-loader": "^0.16.1",
|
2017-02-26 11:23:44 +11:00
|
|
|
"utf-8-validate": "^3.0.1",
|
2017-02-06 09:37:25 +11:00
|
|
|
"uuid": "^3.0.1",
|
2017-05-03 10:04:16 +10:00
|
|
|
"webpack": "^2.4.1",
|
|
|
|
"webpack-manifest-plugin": "^1.1.0",
|
|
|
|
"webpack-merge": "^4.1.0",
|
2017-02-04 10:34:31 +11:00
|
|
|
"websocket.js": "^0.1.7",
|
2017-02-26 11:23:44 +11:00
|
|
|
"ws": "^2.1.0"
|
2017-04-11 08:36:03 +10:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-05-03 10:04:16 +10:00
|
|
|
"@kadira/storybook": "^2.35.3",
|
2017-04-15 21:27:27 +10:00
|
|
|
"babel-eslint": "^7.2.2",
|
2017-05-03 10:04:16 +10:00
|
|
|
"chai": "^3.5.0",
|
|
|
|
"chai-enzyme": "^0.6.1",
|
|
|
|
"enzyme": "^2.8.2",
|
2017-04-11 08:36:03 +10:00
|
|
|
"eslint": "^3.19.0",
|
2017-04-15 21:27:27 +10:00
|
|
|
"eslint-plugin-jsx-a11y": "^4.0.0",
|
2017-05-03 10:04:16 +10:00
|
|
|
"eslint-plugin-react": "^6.10.3",
|
|
|
|
"jsdom": "^9.11.0",
|
|
|
|
"mocha": "^3.2.0",
|
|
|
|
"react-intl-translations-manager": "^5.0.0",
|
|
|
|
"webpack-dev-server": "^2.4.5"
|
2017-04-15 21:27:27 +10:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"fsevents": "*"
|
2016-08-25 01:56:44 +10:00
|
|
|
}
|
|
|
|
}
|