[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

73 lines
3.0 KiB

{
"name": "flexor-web",
"description": "Flexor API server.",
"version": "1.0.3",
"private": true,
"browserslist": [
"defaults"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.ts",
"build": "npm run build:dev",
"build:dev": "webpack --mode production --config webpack.config.ts",
"build:prod": "webpack --mode production --config webpack.config.ts",
"build:communicator": "webpack --config etc/communicator/webpack.config.ts",
"deploy:batch:dev": "az storage blob upload-batch --source ./dist/ -d '$web' --account-name flexordev",
"deploy:batch:prod": "az storage blob upload-batch --source ./dist/ -d '$web' --account-name flexor",
"deploy:config:dev": "az storage blob upload --file ./config/dev.json --name config.json --container-name '$web' --account-name flexordev",
"deploy:config:prod": "az storage blob upload --file ./config/prod.json --name config.json --container-name '$web' --account-name flexor",
"deploy:dev": "run-s deploy:batch:dev deploy:config:dev",
"deploy:prod": "run-s deploy:batch:prod deploy:config:prod"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.1",
"@types/lodash": "^4.14.149",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/redux-logger": "^3.0.7",
"@types/uuid": "^3.4.6",
"@types/webpack": "^4.41.0",
"@types/webpack-bundle-analyzer": "^2.13.3",
"@types/webpack-dev-server": "^3.9.0",
"@types/zxcvbn": "^4.4.0",
"css-loader": "^3.4.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.1.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"@azure/storage-blob": "^12.0.1",
"@fortawesome/fontawesome-common-types": "^0.2.26",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"history": "^4.10.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"uuid": "^3.3.3",
"zxcvbn": "^4.4.2"
}
}