package.json
{
"name": "clickopolis",
"version": "0.2.2",
"description": "An epic clicking-based empire management game.",
"main": "server.js",
"scripts": {
"preinstall": "node preinstall.js",
"test": "jest --coverage",
"build": "webpack --watch --colors --progress",
"webpack": "webpack --watch",
"serve": "node server.js",
"prepublish": "npm test",
"start": "concurrently \"npm run build\" \"npm run serve\""
},
"author": "Emma Ramirez",
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "^1.10.0",
"aphrodite": "^1.2.0",
"cheerio": "^0.22.0",
"enzyme": "^2.7.1",
"express": "^4.14.0",
"jest": "^19.0.2",
"jest-enzyme": "^2.1.2",
"mobx": "^3.1.6-fix887",
"pure-render-decorator": "^1.2.1",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-devtools": "^3.3.2",
"redux-logger": "^2.8.2",
"redux-saga": "^0.14.3",
"redux-thunk": "^2.2.0",
"store": "^1.3.20",
"stylus": "^0.54.5",
"ts-jest": "^19.0.0",
"typescript": "^2.2.0",
"underscore": "^1.8.3",
"webpack": "^2.2.1"
},
"devDependencies": {
"awesome-typescript-loader": "^3.0.8",
"concurrently": "^3.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.0",
"file-loader": "^0.10.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleNameMapper": {
"^.+\\.(css|styl)$": "<rootDir>stylus.config.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}