2017-05-24 11:07:43 -07:00
|
|
|
{
|
2017-06-23 10:26:38 -07:00
|
|
|
"name": "spee.ch",
|
2017-05-24 11:07:43 -07:00
|
|
|
"version": "0.0.1",
|
2017-06-23 10:26:38 -07:00
|
|
|
"description": "a single-serving site that reads and publishes images to and from the LBRY blockchain",
|
2017-07-18 10:02:09 -07:00
|
|
|
"main": "speech.js",
|
2017-05-24 11:07:43 -07:00
|
|
|
"scripts": {
|
2017-12-15 07:24:29 -08:00
|
|
|
"test": "mocha --recursive",
|
2017-12-18 15:23:23 -08:00
|
|
|
"test-all": "mocha --recursive",
|
2018-02-23 16:59:45 -08:00
|
|
|
"start": "node server.js",
|
2018-02-23 17:57:23 -08:00
|
|
|
"start-dev": "nodemon server.js",
|
2017-06-17 22:51:30 +02:00
|
|
|
"lint": "eslint .",
|
|
|
|
"fix": "eslint . --fix",
|
2017-12-28 11:51:03 -08:00
|
|
|
"precommit": "eslint .",
|
|
|
|
"babel": "babel",
|
2018-02-23 16:59:45 -08:00
|
|
|
"build-dev": "webpack --config webpack.dev.js",
|
|
|
|
"build-prod": "webpack --config webpack.prod.js"
|
2017-05-24 11:07:43 -07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-06-23 10:26:38 -07:00
|
|
|
"url": "git+https://github.com/lbryio/spee.ch.git"
|
2017-05-24 11:07:43 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"spee.ch",
|
|
|
|
"lbry",
|
|
|
|
"blockchain"
|
|
|
|
],
|
2017-06-23 10:26:38 -07:00
|
|
|
"author": "@billbitt @kauffj @filipnyquist",
|
2017-05-24 11:07:43 -07:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2017-06-23 10:26:38 -07:00
|
|
|
"url": "https://github.com/lbryio/spee.ch/issues"
|
2017-05-24 11:07:43 -07:00
|
|
|
},
|
2017-06-23 10:26:38 -07:00
|
|
|
"homepage": "https://github.com/lbryio/spee.ch#readme",
|
2017-05-24 11:07:43 -07:00
|
|
|
"dependencies": {
|
|
|
|
"axios": "^0.16.1",
|
2017-10-29 17:10:37 -07:00
|
|
|
"bcrypt": "^1.0.3",
|
2017-05-24 11:07:43 -07:00
|
|
|
"body-parser": "^1.17.1",
|
2017-06-12 14:56:40 -07:00
|
|
|
"config": "^1.26.1",
|
2017-06-26 10:02:14 -07:00
|
|
|
"connect-multiparty": "^2.0.0",
|
2017-10-26 10:48:09 -07:00
|
|
|
"cookie-session": "^2.0.0-beta.3",
|
2018-02-22 10:48:46 -08:00
|
|
|
"cross-fetch": "^1.1.1",
|
2017-05-24 11:07:43 -07:00
|
|
|
"express": "^4.15.2",
|
2017-06-09 16:46:57 -07:00
|
|
|
"express-handlebars": "^3.0.0",
|
2017-10-05 14:48:08 -07:00
|
|
|
"form-data": "^2.3.1",
|
2017-09-15 11:09:21 -07:00
|
|
|
"helmet": "^3.8.1",
|
2017-06-15 11:15:13 -07:00
|
|
|
"mysql2": "^1.3.5",
|
2018-02-22 10:48:46 -08:00
|
|
|
"node-fetch": "^2.0.0",
|
2017-09-16 17:50:22 -07:00
|
|
|
"passport": "^0.4.0",
|
|
|
|
"passport-local": "^1.0.0",
|
2018-01-08 17:06:31 -08:00
|
|
|
"prop-types": "^15.6.0",
|
|
|
|
"react": "^16.2.0",
|
|
|
|
"react-dom": "^16.2.0",
|
2018-02-15 15:55:24 -08:00
|
|
|
"react-ga": "^2.4.1",
|
2018-02-22 18:05:00 -08:00
|
|
|
"react-helmet": "^5.2.0",
|
2018-01-08 17:06:31 -08:00
|
|
|
"react-redux": "^5.0.6",
|
2018-01-29 11:47:12 -08:00
|
|
|
"react-router-dom": "^4.2.2",
|
2018-01-08 17:06:31 -08:00
|
|
|
"redux": "^3.7.2",
|
2018-02-06 19:00:52 -08:00
|
|
|
"redux-saga": "^0.16.0",
|
2017-12-15 07:24:29 -08:00
|
|
|
"request": "^2.83.0",
|
|
|
|
"request-promise": "^4.2.2",
|
2017-06-15 11:15:13 -07:00
|
|
|
"sequelize": "^4.1.0",
|
2017-09-19 12:54:23 -07:00
|
|
|
"sequelize-cli": "^3.0.0-3",
|
2017-08-15 18:24:15 -07:00
|
|
|
"sleep": "^5.1.1",
|
2017-06-19 13:10:06 -07:00
|
|
|
"universal-analytics": "^0.4.13",
|
2018-02-21 08:05:41 -08:00
|
|
|
"webpack-node-externals": "^1.6.0",
|
2018-01-25 13:37:59 -08:00
|
|
|
"whatwg-fetch": "^2.0.3",
|
2017-09-13 15:41:52 -07:00
|
|
|
"winston": "^2.3.1",
|
2017-09-14 11:34:13 -07:00
|
|
|
"winston-slack-webhook": "billbitt/winston-slack-webhook"
|
2017-06-17 22:51:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-12-21 18:03:08 -08:00
|
|
|
"babel-core": "^6.26.0",
|
|
|
|
"babel-loader": "^7.1.2",
|
2018-02-21 08:05:41 -08:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
2018-02-06 19:00:52 -08:00
|
|
|
"babel-polyfill": "^6.26.0",
|
2017-12-21 18:03:08 -08:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"babel-preset-react": "^6.24.1",
|
2018-01-19 12:11:38 -08:00
|
|
|
"babel-preset-stage-2": "^6.24.1",
|
2018-02-21 08:05:41 -08:00
|
|
|
"babel-register": "^6.26.0",
|
2017-12-15 07:24:29 -08:00
|
|
|
"chai": "^4.1.2",
|
|
|
|
"chai-http": "^3.0.0",
|
2018-02-21 08:05:41 -08:00
|
|
|
"css-loader": "^0.28.9",
|
2018-02-21 17:02:57 -08:00
|
|
|
"eslint": "4.18.0",
|
|
|
|
"eslint-config-standard": "^10.2.1",
|
|
|
|
"eslint-config-standard-jsx": "^5.0.0",
|
|
|
|
"eslint-plugin-import": "^2.8.0",
|
|
|
|
"eslint-plugin-node": "^4.2.3",
|
|
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
|
|
"eslint-plugin-react": "^7.6.1",
|
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
2017-12-08 17:50:47 -08:00
|
|
|
"husky": "^0.13.4",
|
2017-12-21 18:03:08 -08:00
|
|
|
"mocha": "^4.0.1",
|
2018-02-23 11:26:04 -08:00
|
|
|
"nodemon": "^1.15.1",
|
2018-01-08 17:06:31 -08:00
|
|
|
"redux-devtools": "^3.4.1",
|
2018-02-22 15:43:26 -08:00
|
|
|
"regenerator-transform": "^0.12.3",
|
2018-02-23 15:48:56 -08:00
|
|
|
"webpack": "^3.10.0",
|
|
|
|
"webpack-merge": "^4.1.2"
|
2017-05-24 11:07:43 -07:00
|
|
|
}
|
|
|
|
}
|