Skip to content

Instantly share code, notes, and snippets.

@principalweb
Created April 27, 2019 13:57
Show Gist options
  • Save principalweb/2e347a3b8d3b15c233540366465827a6 to your computer and use it in GitHub Desktop.
Save principalweb/2e347a3b8d3b15c233540366465827a6 to your computer and use it in GitHub Desktop.
React project NPM modules
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"awesome-bootstrap-checkbox": "^1.0.0",
"axios": "^0.18.0",
"bootstrap": "4.0.0-beta.2",
"calendar-base": "^0.3.0",
"classnames": "^2.2.5",
"cropperjs": "^1.3.4",
"expo": "^21.0.2",
"font-awesome": "^4.7.0",
"history": "^4.6.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.1",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.2.0",
"react-cropper": "^1.0.1",
"react-dates": "^15.2.1",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.8",
"react-event-calendar": "^0.3.0",
"react-filepicker": "^0.10.3",
"react-google-maps": "^9.4.5",
"react-id-swiper": "^1.5.6",
"react-infinite-scroller": "^1.1.1",
"react-linechart": "^1.1.12",
"react-mailchimp-subscribe": "^2.0.1",
"react-modal": "^1.4.0",
"react-native": "^0.48.4",
"react-native-web": "^0.2.2",
"react-pdf": "^3.0.4",
"react-phone-number-input": "^0.15.2",
"react-redux": "^5.0.6",
"react-redux-toastr": "^7.1.6",
"react-router-dom": "^4.1.2",
"react-scripts": "1.0.17",
"react-search-input": "^0.11.3",
"react-test-renderer": "^16.0.0",
"redux": "^3.7.2",
"redux-connect": "^6.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.1.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"rheostat": "^2.0.0",
"semantic-ui-css": "^2.2.14",
"semantic-ui-react": "^0.78.2"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-preset-expo": "^4.0.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-redux": "^0.1.7",
"enzyme-to-json": "^3.2.1",
"eslint": "4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.61.0",
"jest-expo": "^24.0.0",
"react-addons-test-utils": "^15.6.2",
"react-native-scripts": "^1.8.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"riek": "^1.1.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"start:staging": "REACT_APP_ENV=staging npm-run-all -p watch-css start-js",
"start:production": "REACT_APP_ENV=production npm-run-all -p watch-css start-js",
"build-js": "sh -ac '. ./.env.${REACT_APP_ENV}; react-scripts build'",
"build": "npm-run-all build-css build-js",
"build:staging": "REACT_APP_ENV=staging npm-run-all build-css build-js",
"build:production": "REACT_APP_ENV=production npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment