Created
February 9, 2019 21:00
-
-
Save mustmodify/8bede3af72a7b2a6075fbc9e82c135bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "PhysioAge", | |
"version": "1.0.0", | |
"private": true, | |
"scripts": { | |
"build:test": "webpack --config webpack.config.js", | |
"build:production": "NODE_ENV=production npm install && NODE_ENV=production webpack --config webpack.config.js", | |
"build:development": "webpack -w --config webpack.config.js", | |
"test": "jest" | |
}, | |
"cacheDirectories": [ | |
"node_modules", | |
"client/node_modules" | |
], | |
"dependencies": { | |
"babel-cli": "^6.24.1", | |
"babel-core": "^6.24.1", | |
"babel-loader": "^6.3.2", | |
"babel-polyfill": "^6.23.0", | |
"babel-preset-es2015": "^6.24.1", | |
"babel-preset-react": "^6.24.1", | |
"babel-preset-stage-2": "^6.24.1", | |
"babel-runtime": "^6.23.0", | |
"es5-shim": "^4.5.9", | |
"expose-loader": "^0.7.3", | |
"imports-loader": "^0.7.1", | |
"prop-types": "^15.5.10", | |
"react": "^15.5.4", | |
"react-autosuggest": "^9.3.2", | |
"react-dom": "^15.5.4", | |
"react-ga": "^2.2.0", | |
"react-on-rails": "6.10.1", | |
"react-redux": "^5.0.5", | |
"redux": "^3.0.0", | |
"redux-thunk": "^2.2.0", | |
"reselect": "^3.0.1", | |
"rickshaw": "^1.6.5", | |
"simple-statistics": "^4.1.1", | |
"webpack": "^2.3.3" | |
}, | |
"devDependencies": { | |
"babel-jest": "^20.0.3", | |
"enzyme": "^2.9.1", | |
"jest": "^20.0.4", | |
"react-test-renderer": "15.5.4" | |
}, | |
"jest": { | |
"modulePaths": [ | |
"node_modules" | |
], | |
"moduleFileExtensions": [ | |
"js", | |
"jsx" | |
], | |
"moduleDirectories": [ | |
"node_modules", | |
"app/bundles/Dashboard" | |
], | |
"setupFiles": [ | |
"<rootDir>/test/support/jest.jquery.js" | |
], | |
"moduleNameMapper": { | |
"^react(.*)$": "<rootDir>/node_modules/react/$1" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment