2017-12-18 08:03:35 +00:00
|
|
|
{
|
|
|
|
"name": "hello",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Node Hello Project",
|
|
|
|
"main": "index.js",
|
|
|
|
"repository": "https://git.loafle.net/overflow/overflow_webapp",
|
|
|
|
"author": "LOAFLE (rnd@loafle.com)",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "./node_modules/.bin/rimraf ./dist",
|
|
|
|
"prepublish": "yarn run build",
|
|
|
|
"postpublish": "./node_modules/.bin/greenkeeper-postpublish",
|
|
|
|
"start": "set NODE_ENV=development && ./node_modules/.bin/webpack-dev-server --open --progress --config ./config/webpack/webpack.config.dev.js",
|
|
|
|
"start:dashboard": "set NODE_ENV=development && ./node_modules/.bin/webpack-dashboard -- ./node_modules/.bin/webpack-dev-server --open --progress --config ./config/webpack/webpack.config.dev.js",
|
|
|
|
"test": "yarn run jest",
|
|
|
|
"test:watch": "yarn run jest -- --watch",
|
|
|
|
"jest": "PWD=$(pwd) NODE_ENV=test ./node_modules/.bin/jest -w 1 --coverage",
|
2017-12-22 21:03:28 +00:00
|
|
|
"build:dev": "set NODE_ENV=production && ./node_modules/.bin/webpack-dashboard -m -- ./node_modules/.bin/webpack --progress --profile --colors --config ./config/webpack/webpack.config.dev.js",
|
2017-12-18 08:03:35 +00:00
|
|
|
"build": "set NODE_ENV=production && ./node_modules/.bin/webpack-dashboard -m -- ./node_modules/.bin/webpack --progress --profile --colors --config ./config/webpack/webpack.config.prod.js",
|
|
|
|
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/ts/**/*.{ts,tsx}' && ./node_modules/.bin/sass-lint 'src/**/*.scss'",
|
|
|
|
"stats": "set NODE_ENV=production && webpack --progress --config ./config/webpack/webpack.config.stats.js --profile --json > ./config/webpack/stats/stats.json"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-12-18 10:18:04 +00:00
|
|
|
"@types/history": "^4.6.2",
|
|
|
|
"@types/jest": "^21.1.8",
|
|
|
|
"@types/lodash": "^4.14.91",
|
|
|
|
"@types/prop-types": "^15.5.2",
|
|
|
|
"@types/react": "^16.0.31",
|
|
|
|
"@types/react-addons-test-utils": "^0.14.20",
|
|
|
|
"@types/react-dom": "^16.0.3",
|
|
|
|
"@types/react-hot-loader": "^3.0.5",
|
2017-12-18 08:03:35 +00:00
|
|
|
"@types/react-json-pretty": "^1.3.2",
|
2017-12-18 10:18:04 +00:00
|
|
|
"@types/react-redux": "^5.0.14",
|
|
|
|
"@types/react-router": "^4.0.19",
|
|
|
|
"@types/react-router-dom": "^4.2.3",
|
|
|
|
"@types/react-router-redux": "^5.0.10",
|
2017-12-18 08:03:35 +00:00
|
|
|
"@types/react-tap-event-plugin": "^0.0.30",
|
2017-12-18 10:18:04 +00:00
|
|
|
"@types/recharts": "^1.0.7",
|
2017-12-18 08:03:35 +00:00
|
|
|
"@types/redux": "^3.6.0",
|
|
|
|
"@types/whatwg-fetch": "^0.0.33",
|
2017-12-18 10:18:04 +00:00
|
|
|
"awesome-typescript-loader": "^3.4.1",
|
|
|
|
"check-dependencies": "^1.1.0",
|
|
|
|
"copy-webpack-plugin": "^4.3.0",
|
|
|
|
"css-loader": "^0.28.7",
|
|
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
|
|
|
"file-loader": "^1.1.6",
|
|
|
|
"greenkeeper-postpublish": "^1.3.0",
|
2017-12-21 05:48:31 +00:00
|
|
|
"html-loader": "^0.5.1",
|
2017-12-18 10:18:04 +00:00
|
|
|
"html-webpack-plugin": "^2.30.1",
|
|
|
|
"image-webpack-loader": "^3.4.2",
|
|
|
|
"jest": "^21.2.1",
|
|
|
|
"node-sass": "^4.7.2",
|
|
|
|
"postcss-import": "^11.0.0",
|
|
|
|
"postcss-loader": "^2.0.9",
|
2017-12-18 08:03:35 +00:00
|
|
|
"raw-loader": "^0.5.1",
|
2017-12-18 10:18:04 +00:00
|
|
|
"react-addons-test-utils": "^15.6.2",
|
|
|
|
"react-hot-loader": "^3.1.3",
|
|
|
|
"react-json-pretty": "^1.7.4",
|
2017-12-18 08:03:35 +00:00
|
|
|
"redux-devtools-extension": "^2.13.2",
|
|
|
|
"redux-logger": "^3.0.6",
|
2017-12-18 10:18:04 +00:00
|
|
|
"rimraf": "^2.6.2",
|
|
|
|
"sass-lint": "^1.12.1",
|
|
|
|
"sass-loader": "^6.0.6",
|
|
|
|
"source-map-loader": "^0.2.3",
|
|
|
|
"style-loader": "^0.19.1",
|
|
|
|
"tslint": "^5.8.0",
|
2017-12-18 08:03:35 +00:00
|
|
|
"tslint-loader": "^3.5.3",
|
2017-12-18 10:18:04 +00:00
|
|
|
"tslint-react": "^3.2.0",
|
|
|
|
"typescript": "^2.6.2",
|
|
|
|
"webpack": "^3.10.0",
|
|
|
|
"webpack-dashboard": "^1.0.2",
|
|
|
|
"webpack-dev-server": "^2.9.7",
|
|
|
|
"webpack-merge": "^4.1.1",
|
2017-12-18 08:03:35 +00:00
|
|
|
"webpack-visualizer-plugin": "^0.1.11"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-12-18 10:18:04 +00:00
|
|
|
"history": "^4.7.2",
|
|
|
|
"immutable": "^3.8.2",
|
|
|
|
"inversify": "^4.9.0",
|
2017-12-18 08:03:35 +00:00
|
|
|
"lodash": "^4.17.4",
|
2017-12-18 10:18:04 +00:00
|
|
|
"prop-types": "^15.6.0",
|
|
|
|
"react": "^16.2.0",
|
|
|
|
"react-dom": "^16.2.0",
|
2017-12-18 08:03:35 +00:00
|
|
|
"react-immutable-proptypes": "^2.1.0",
|
2017-12-18 10:18:04 +00:00
|
|
|
"react-redux": "^5.0.6",
|
|
|
|
"react-router": "^4.2.0",
|
|
|
|
"react-router-dom": "^4.2.2",
|
2017-12-18 11:00:59 +00:00
|
|
|
"react-router-redux": "next",
|
2017-12-18 10:18:04 +00:00
|
|
|
"react-tap-event-plugin": "^3.0.2",
|
|
|
|
"recharts": "^1.0.0-beta.6",
|
|
|
|
"redux": "^3.7.2",
|
|
|
|
"redux-saga": "^0.16.0",
|
2017-12-18 08:03:35 +00:00
|
|
|
"reflect-metadata": "^0.1.10",
|
|
|
|
"reselect": "^3.0.1",
|
2017-12-18 10:18:04 +00:00
|
|
|
"semantic-ui-react": "^0.77.1"
|
2017-12-18 08:03:35 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"js"
|
|
|
|
],
|
|
|
|
"transform": {
|
|
|
|
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
|
|
},
|
|
|
|
"testRegex": "\\./src/ts/(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
|
|
|
|
}
|
|
|
|
}
|