UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

88 lines (87 loc) 2.96 kB
{ "name": "@lml/cosmo-redux-store", "version": "0.1.17", "description": "Standard Redux store for cosmo applications", "repository": { "type": "git", "url": "https://github.com/lastmilelink/cosmo-redux-store" }, "main": "./dist/index.js", "scripts": { "build": "tsc", "build:watch": "tsc --watch --pretty", "clean": "rm -rf ./dist", "lint": "tslint -p ./tsconfig.json -c ./tslint.json -e '**/*.spec.ts' -e 'node_modules/**/*' -t json", "lint:version": "tslint -v", "lint:fix": "tslint -p ./tsconfig.json -c ./tslint.json -e '**/*.spec.ts' -e 'node_modules/**/*' --fix", "prepublishOnly": "npm run clean && npm run build && npm test", "tsfmt:verify": "tsfmt --verify", "tsfmt:replace": "tsfmt -r", "test": "jest" }, "keywords": [], "author": "Rob Tucker <rob@coderlab.co.uk>", "license": "Unlicensed", "dependencies": { "@lml/cosmo-ts-data": "^1.0.6", "@types/lodash": "^4.14.103", "@types/node": "^9.4.6", "@types/prop-types": "^15.5.2", "@types/pusher-js": "^3.0.30", "@types/react": "16.0.35", "@types/react-dom": "^16.0.4", "@types/react-redux": "5.0.15", "@types/react-router": "4.0.22", "@types/react-router-dom": "4.2.4", "@types/react-router-redux": "5.0.12", "@types/redux-localstorage": "^1.0.8", "@types/redux-localstorage-debounce": "^0.1.4", "@types/redux-localstorage-filter": "^0.1.4", "@types/redux-logger": "^3.0.5", "lodash": "4.17.5", "pusher-js": "4.2.2", "pusher-redux-observable": "0.1.2", "react": "^16.2.0", "react-dom": "^16.2.0", "react-redux": "5.0.4", "react-router": "4.2.0", "react-router-dom": "4.2.2", "react-router-redux": "^5.0.0-alpha.6", "redux": "3.7.2", "redux-devtools-extension": "2.13.2", "redux-localstorage": "1.0.0-rc5", "redux-localstorage-debounce": "0.1.0", "redux-localstorage-filter": "0.1.1", "redux-logger": "3.0.6", "redux-observable": "0.17.0", "redux-thunk": "2.2.0", "reselect": "3.0.1", "rxjs": "5.5.2" }, "devDependencies": { "@types/faker": "4.1.2", "@types/jest": "22.1.2", "faker": "4.1.0", "jest": "22.3.0", "ts-jest": "22.0.4", "tslib": "1.9.0", "tslint": "5.9.1", "tslint-react": "3.5.1", "typescript": "2.6.2" }, "jest": { "transform": { ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$", "moduleFileExtensions": [ "ts", "tsx", "js" ], "moduleDirectories": [ "node_modules", "src/app" ] } }