2017-04-24 12:16:40 -06:00
|
|
|
{
|
|
|
|
"name": "sprinklers3",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"description": "A frontend for mqtt based IoT sprinklers systems",
|
2018-08-08 17:16:23 +03:00
|
|
|
"main": "dist/server/index.js",
|
2017-04-24 12:16:40 -06:00
|
|
|
"scripts": {
|
2017-05-02 20:03:48 -06:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2017-09-10 12:30:23 -06:00
|
|
|
"clean": "rm -rf ./dist ./build ./public",
|
2018-08-07 21:21:26 +03:00
|
|
|
"build:client": "NODE_ENV=production webpack --config ./client/webpack.config.js --env prod",
|
2017-09-07 12:26:23 -06:00
|
|
|
"build:server": "tsc --project server",
|
2018-07-25 12:53:33 -06:00
|
|
|
"build": "run-p build:*",
|
2018-08-07 21:21:26 +03:00
|
|
|
"watch:client": "yarn build:client --watch",
|
2017-09-07 12:26:23 -06:00
|
|
|
"watch:server": "yarn build:server --watch",
|
2018-08-07 21:21:26 +03:00
|
|
|
"start:dev-server": "NODE_ENV=development webpack-dev-server --config ./client/webpack.config.js --env dev",
|
2018-08-08 17:30:38 +03:00
|
|
|
"start": "NODE_ENV=development node .",
|
2017-10-03 12:18:30 -06:00
|
|
|
"start:pretty": "yarn start | node dist/server/logging/prettyPrint.js",
|
2018-08-08 17:30:38 +03:00
|
|
|
"start:nodemon": "nodemon --delay 0.5 --exec \"env NODE_ENV=development node . | node dist/server/logging/prettyPrint.js\"",
|
2017-10-03 23:19:45 -06:00
|
|
|
"start:watch": "run-p watch:server start:nodemon",
|
2017-10-03 23:19:57 -06:00
|
|
|
"start:dev": "run-p start:dev-server start:watch",
|
2018-08-07 21:21:26 +03:00
|
|
|
"lint:client": "tslint --project client --force --format verbose",
|
2017-09-08 09:49:30 -06:00
|
|
|
"lint:server": "tslint --project server --force --format verbose",
|
2017-09-07 15:52:51 -06:00
|
|
|
"lint": "run-p lint:*"
|
2017-04-24 12:16:40 -06:00
|
|
|
},
|
2017-10-09 22:13:59 -06:00
|
|
|
"files": [
|
2017-10-31 17:23:27 -06:00
|
|
|
"dist",
|
|
|
|
"public"
|
2017-10-09 22:13:59 -06:00
|
|
|
],
|
2017-04-24 12:16:40 -06:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/amikhalev/sprinklers3.git"
|
|
|
|
},
|
|
|
|
"author": "Alex Mikhalev <alexmikhalevalex@gmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/amikhalev/sprinklers3/issues"
|
|
|
|
},
|
2017-05-02 20:03:48 -06:00
|
|
|
"homepage": "https://github.com/amikhalev/sprinklers3#readme",
|
|
|
|
"dependencies": {
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/split2": "^2.1.6",
|
2018-07-23 20:14:31 -06:00
|
|
|
"bcrypt": "^3.0.0",
|
2018-06-27 14:46:03 -06:00
|
|
|
"body-parser": "^1.18.3",
|
2018-06-23 12:37:55 -06:00
|
|
|
"chalk": "^2.4.1",
|
2018-04-12 17:27:42 -06:00
|
|
|
"express": "^4.16.3",
|
2018-08-19 19:53:30 -06:00
|
|
|
"express-pino-logger": "^4.0.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"express-promise-router": "^3.0.3",
|
2018-06-28 17:25:08 -06:00
|
|
|
"jsonwebtoken": "^8.3.0",
|
2018-07-20 00:03:11 -06:00
|
|
|
"lodash": "^4.17.10",
|
2018-06-23 12:37:55 -06:00
|
|
|
"mobx": "^5.0.3",
|
2018-08-19 19:53:30 -06:00
|
|
|
"mobx-utils": "^5.0.1",
|
2018-06-23 12:37:55 -06:00
|
|
|
"module-alias": "^2.1.0",
|
|
|
|
"moment": "^2.22.2",
|
2018-07-23 20:14:31 -06:00
|
|
|
"mqtt": "^2.18.3",
|
2018-07-20 00:03:11 -06:00
|
|
|
"pg": "^7.4.3",
|
2018-08-19 19:53:30 -06:00
|
|
|
"pino": "^5.2.0",
|
|
|
|
"pump": "^3.0.0",
|
2018-07-20 00:03:11 -06:00
|
|
|
"reflect-metadata": "^0.1.12",
|
2018-07-23 20:14:31 -06:00
|
|
|
"serializr": "^1.3.0",
|
2018-08-19 19:53:30 -06:00
|
|
|
"split2": "^3.0.0",
|
|
|
|
"through2": "^2.0.3",
|
2018-07-20 00:03:11 -06:00
|
|
|
"typeorm": "^0.2.7",
|
2018-07-23 20:14:31 -06:00
|
|
|
"ws": "^6.0.0"
|
2017-10-09 22:09:42 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-04-12 17:27:42 -06:00
|
|
|
"@types/async": "^2.0.49",
|
2018-06-27 14:46:03 -06:00
|
|
|
"@types/bcrypt": "^2.0.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"@types/classnames": "^2.2.6",
|
2018-06-23 12:37:55 -06:00
|
|
|
"@types/core-js": "^2.5.0",
|
|
|
|
"@types/express": "^4.16.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"@types/jsonwebtoken": "^7.2.8",
|
2018-08-07 12:04:33 +03:00
|
|
|
"@types/lodash": "^4.14.116",
|
2018-08-19 19:28:38 -06:00
|
|
|
"@types/module-alias": "^2.0.0",
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/node": "^10.7.1",
|
2017-05-06 15:39:25 -06:00
|
|
|
"@types/object-assign": "^4.0.30",
|
2018-08-07 12:04:33 +03:00
|
|
|
"@types/pino": "^4.16.1",
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/prop-types": "^15.5.5",
|
|
|
|
"@types/pump": "^1.0.1",
|
2018-07-27 22:22:09 -06:00
|
|
|
"@types/query-string": "^6.1.0",
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/react": "16.4.11",
|
2018-08-07 12:04:33 +03:00
|
|
|
"@types/react-dom": "16.0.7",
|
2018-06-23 12:37:55 -06:00
|
|
|
"@types/react-hot-loader": "^4.1.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"@types/react-router-dom": "^4.3.0",
|
2018-08-07 12:04:33 +03:00
|
|
|
"@types/react-sortable-hoc": "^0.6.4",
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/through2": "^2.0.33",
|
2018-04-12 17:27:42 -06:00
|
|
|
"@types/webpack-env": "^1.13.6",
|
2018-08-19 19:53:30 -06:00
|
|
|
"@types/ws": "^6.0.0",
|
2018-06-23 12:37:55 -06:00
|
|
|
"async": "^2.6.1",
|
2018-08-19 19:53:30 -06:00
|
|
|
"autoprefixer": "^9.1.2",
|
2018-04-12 17:27:42 -06:00
|
|
|
"case-sensitive-paths-webpack-plugin": "^2.1.2",
|
2018-06-23 12:37:55 -06:00
|
|
|
"classnames": "^2.2.6",
|
2018-07-23 20:14:31 -06:00
|
|
|
"css-loader": "^1.0.0",
|
2018-06-23 12:37:55 -06:00
|
|
|
"dotenv": "^6.0.0",
|
2018-07-23 19:20:41 -06:00
|
|
|
"favicons-webpack-plugin": "^0.0.9",
|
2018-04-12 17:27:42 -06:00
|
|
|
"file-loader": "^1.1.11",
|
2017-05-03 16:12:51 -06:00
|
|
|
"font-awesome": "^4.7.0",
|
2018-08-19 19:53:30 -06:00
|
|
|
"fork-ts-checker-webpack-plugin": "^0.4.9",
|
2018-06-27 00:59:58 -06:00
|
|
|
"happypack": "^5.0.0",
|
2018-04-12 17:27:42 -06:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"mini-css-extract-plugin": "^0.4.1",
|
2018-08-19 19:53:30 -06:00
|
|
|
"mobx-react": "^5.2.5",
|
|
|
|
"mobx-react-devtools": "^6.0.3",
|
2018-07-08 06:57:03 -06:00
|
|
|
"mobx-react-router": "^4.0.4",
|
2018-08-19 19:53:30 -06:00
|
|
|
"node-sass": "^4.9.3",
|
2018-07-23 20:14:31 -06:00
|
|
|
"nodemon": "^1.18.3",
|
2018-06-23 12:37:55 -06:00
|
|
|
"npm-run-all": "^4.1.3",
|
2017-05-06 15:39:25 -06:00
|
|
|
"object-assign": "^4.1.1",
|
2018-08-07 12:04:33 +03:00
|
|
|
"postcss-flexbugs-fixes": "^4.1.0",
|
2018-08-19 19:53:30 -06:00
|
|
|
"postcss-loader": "^3.0.0",
|
2018-08-07 12:04:33 +03:00
|
|
|
"postcss-preset-env": "^5.3.0",
|
2017-10-03 12:18:30 -06:00
|
|
|
"promise": "^8.0.1",
|
2018-06-23 12:37:55 -06:00
|
|
|
"prop-types": "^15.6.2",
|
2018-07-27 22:22:09 -06:00
|
|
|
"query-string": "^6.1.0",
|
2018-08-07 12:04:33 +03:00
|
|
|
"react": "16.4.2",
|
2018-04-12 17:27:42 -06:00
|
|
|
"react-dev-utils": "^5.0.1",
|
2018-08-07 12:04:33 +03:00
|
|
|
"react-dom": "16.4.2",
|
|
|
|
"react-hot-loader": "^4.3.4",
|
2018-06-27 00:59:58 -06:00
|
|
|
"react-router": "^4.3.1",
|
|
|
|
"react-router-dom": "^4.3.1",
|
2018-07-27 18:56:53 -06:00
|
|
|
"react-sortable-hoc": "^0.8.3",
|
2018-08-07 12:04:33 +03:00
|
|
|
"sass-loader": "^7.1.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"semantic-ui-css": "^2.3.3",
|
2018-08-07 12:04:33 +03:00
|
|
|
"semantic-ui-react": "^0.82.2",
|
2018-08-19 19:53:30 -06:00
|
|
|
"source-map-loader": "^0.2.4",
|
|
|
|
"style-loader": "^0.22.1",
|
|
|
|
"ts-loader": "^4.5.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"tslint": "^5.11.0",
|
2018-06-23 12:37:55 -06:00
|
|
|
"tslint-react": "^3.6.0",
|
2018-08-07 12:04:33 +03:00
|
|
|
"typescript": "^3.0.1",
|
2018-07-25 12:53:33 -06:00
|
|
|
"uglify-es": "^3.3.9",
|
2018-08-19 19:53:30 -06:00
|
|
|
"uglifyjs-webpack-plugin": "^1.3.0",
|
|
|
|
"url-loader": "^1.1.1",
|
2018-08-07 12:04:33 +03:00
|
|
|
"webpack": "^4.16.5",
|
2018-06-27 00:59:58 -06:00
|
|
|
"webpack-bundle-analyzer": "^2.13.1",
|
2018-07-23 20:14:31 -06:00
|
|
|
"webpack-cli": "^3.1.0",
|
2018-06-27 00:59:58 -06:00
|
|
|
"webpack-dashboard": "^2.0.0",
|
2018-07-23 20:14:31 -06:00
|
|
|
"webpack-dev-server": "^3.1.5"
|
2017-10-09 22:09:42 -06:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2018-08-19 19:53:30 -06:00
|
|
|
"**/@types/react": "16.4.11",
|
2018-08-07 12:04:33 +03:00
|
|
|
"**/@types/react-dom": "16.0.7",
|
|
|
|
"**/react": "16.4.2",
|
|
|
|
"**/react-dom": "16.4.2"
|
2017-08-29 20:42:39 -06:00
|
|
|
}
|
2017-04-24 12:16:40 -06:00
|
|
|
}
|