2016-02-27 21:53:11 +00:00
|
|
|
{
|
|
|
|
"name": "BeautifulAtlas",
|
2016-09-09 08:35:39 +00:00
|
|
|
"private": true,
|
2016-02-27 21:53:11 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf dist",
|
2016-05-03 07:32:40 +00:00
|
|
|
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress",
|
|
|
|
"build:analyze": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --json | webpack-bundle-size-analyzer",
|
2016-02-27 21:53:11 +00:00
|
|
|
"build": "npm run clean && npm run build:webpack",
|
2016-09-05 22:23:15 +00:00
|
|
|
"start": "node index.js",
|
|
|
|
"start:dev": "cross-env NODE_ENV=development DEBUG=sql,cache,presenters ./node_modules/.bin/nodemon --watch server index.js",
|
2016-07-24 22:32:31 +00:00
|
|
|
"lint": "eslint frontend",
|
2016-06-04 22:52:19 +00:00
|
|
|
"deploy": "git push heroku master",
|
2016-06-20 07:18:03 +00:00
|
|
|
"heroku-postbuild": "npm run build && npm run sequelize db:migrate",
|
2016-09-09 08:35:39 +00:00
|
|
|
"sequelize": "./node_modules/.bin/sequelize",
|
|
|
|
"test": "npm run test:frontend && npm run test:server",
|
|
|
|
"test:frontend": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
2016-09-11 19:09:45 +00:00
|
|
|
"test:server": "jest --config=server/.jest-config --runInBand"
|
2016-09-09 08:35:39 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": false,
|
|
|
|
"testPathDirs": [
|
|
|
|
"frontend"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^.*[.](s?css|css)$": "<rootDir>/__mocks__/styleMock.js",
|
|
|
|
"^.*[.](gif|ttf|eot|svg)$": "<rootDir>/__test__/fileMock.js"
|
|
|
|
},
|
|
|
|
"moduleFileExtensions": ["js", "jsx", "json"],
|
|
|
|
"moduleDirectories": ["node_modules", "server"],
|
|
|
|
"modulePaths": [
|
|
|
|
"frontend"
|
|
|
|
],
|
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>/__mocks__/window.js"
|
|
|
|
]
|
2016-02-27 21:53:11 +00:00
|
|
|
},
|
2016-08-22 06:44:18 +00:00
|
|
|
"engines": {
|
|
|
|
"node": "6.x"
|
|
|
|
},
|
2016-02-27 21:53:11 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+ssh://git@github.com/jorilallo/atlas.git"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-08-22 06:52:28 +00:00
|
|
|
"babel-core": "6.13.2",
|
|
|
|
"babel-eslint": "6.1.2",
|
|
|
|
"babel-loader": "6.2.5",
|
2016-07-23 19:50:48 +00:00
|
|
|
"babel-plugin-lodash": "^3.2.6",
|
2016-06-26 06:31:22 +00:00
|
|
|
"babel-plugin-transform-decorators-legacy": "1.3.4",
|
2016-08-15 12:59:42 +00:00
|
|
|
"babel-polyfill": "^6.13.0",
|
2016-08-22 06:52:28 +00:00
|
|
|
"babel-preset-es2015": "6.13.2",
|
|
|
|
"babel-preset-react": "6.11.1",
|
|
|
|
"babel-preset-react-hmre": "1.1.1",
|
2016-06-26 06:31:22 +00:00
|
|
|
"babel-preset-stage-0": "6.5.0",
|
2016-08-22 06:52:28 +00:00
|
|
|
"babel-regenerator-runtime": "6.5.0",
|
2016-07-25 05:44:44 +00:00
|
|
|
"bugsnag": "^1.7.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"classnames": "2.2.3",
|
|
|
|
"codemirror": "5.16.0",
|
|
|
|
"cross-env": "1.0.7",
|
2016-05-20 06:51:22 +00:00
|
|
|
"crypto": "0.0.3",
|
2016-06-26 06:31:22 +00:00
|
|
|
"css-loader": "0.23.1",
|
|
|
|
"debug": "2.2.0",
|
|
|
|
"dotenv": "2.0.0",
|
|
|
|
"emoji-name-map": "1.1.2",
|
|
|
|
"eslint": "2.13.1",
|
|
|
|
"eslint-config-airbnb": "9.0.1",
|
2016-07-01 06:21:58 +00:00
|
|
|
"eslint-import-resolver-webpack": "^0.3.1",
|
|
|
|
"eslint-plugin-import": "^1.9.2",
|
|
|
|
"eslint-plugin-jsx-a11y": "^1.5.3",
|
2016-06-26 06:31:22 +00:00
|
|
|
"eslint-plugin-react": "5.2.2",
|
|
|
|
"exports-loader": "0.6.3",
|
|
|
|
"extract-text-webpack-plugin": "1.0.1",
|
|
|
|
"file-loader": "0.9.0",
|
|
|
|
"highlight.js": "9.4.0",
|
|
|
|
"history": "3.0.0",
|
|
|
|
"html-webpack-plugin": "2.17.0",
|
|
|
|
"http-errors": "1.4.0",
|
|
|
|
"imports-loader": "0.6.5",
|
|
|
|
"isomorphic-fetch": "2.2.1",
|
|
|
|
"js-tree": "1.1.0",
|
|
|
|
"json-loader": "0.5.4",
|
|
|
|
"jsonwebtoken": "7.0.1",
|
|
|
|
"koa": "2.0.0",
|
|
|
|
"koa-bodyparser": "2.0.1",
|
|
|
|
"koa-compress": "2.0.0",
|
|
|
|
"koa-connect": "1.0.0",
|
|
|
|
"koa-convert": "1.2.0",
|
|
|
|
"koa-helmet": "1.0.0",
|
|
|
|
"koa-jwt": "1.2.0",
|
|
|
|
"koa-logger": "2.0.0",
|
|
|
|
"koa-mount": "2.0.0",
|
|
|
|
"koa-router": "7.0.1",
|
|
|
|
"koa-sendfile": "2.0.0",
|
|
|
|
"koa-webpack-dev-middleware": "1.2.0",
|
|
|
|
"koa-webpack-hot-middleware": "1.0.3",
|
|
|
|
"localenv": "0.2.2",
|
|
|
|
"lodash": "4.13.1",
|
|
|
|
"lodash.orderby": "4.4.0",
|
2016-08-01 19:16:37 +00:00
|
|
|
"marked": "0.3.6",
|
2016-08-02 08:29:07 +00:00
|
|
|
"marked-sanitized": "^0.1.1",
|
2016-08-22 06:52:28 +00:00
|
|
|
"mobx": "2.4.3",
|
|
|
|
"mobx-react": "3.5.5",
|
2016-06-26 06:31:22 +00:00
|
|
|
"mobx-react-devtools": "4.2.0",
|
|
|
|
"moment": "2.13.0",
|
|
|
|
"node-dev": "3.1.0",
|
2016-07-24 22:31:43 +00:00
|
|
|
"node-sass": "3.8.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"nodemon": "1.9.1",
|
|
|
|
"normalize.css": "4.1.1",
|
|
|
|
"normalizr": "2.0.1",
|
2016-08-22 06:52:28 +00:00
|
|
|
"pg": "6.1.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"pg-hstore": "2.3.2",
|
2016-07-22 07:11:54 +00:00
|
|
|
"query-string": "^4.2.2",
|
2016-06-26 06:31:22 +00:00
|
|
|
"querystring": "0.2.0",
|
|
|
|
"randomstring": "1.1.5",
|
2016-09-09 08:35:39 +00:00
|
|
|
"react": "15.3.1",
|
|
|
|
"react-codemirror": "0.2.6",
|
2016-06-26 06:31:22 +00:00
|
|
|
"react-dom": "15.1.0",
|
2016-09-09 08:35:39 +00:00
|
|
|
"react-dropzone": "3.6.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"react-helmet": "3.1.0",
|
2016-07-18 03:59:32 +00:00
|
|
|
"react-keydown": "^1.6.1",
|
2016-06-26 06:31:22 +00:00
|
|
|
"react-router": "2.5.1",
|
|
|
|
"rebass": "0.2.6",
|
2016-08-21 18:12:24 +00:00
|
|
|
"redis": "^2.6.2",
|
|
|
|
"redis-lock": "^0.1.0",
|
2016-08-03 12:32:04 +00:00
|
|
|
"reflexbox": "^2.0.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"safestart": "0.8.0",
|
2016-07-24 22:31:43 +00:00
|
|
|
"sass-loader": "4.0.0",
|
2016-08-22 06:52:28 +00:00
|
|
|
"sequelize": "3.24.1",
|
2016-06-26 06:31:22 +00:00
|
|
|
"sequelize-cli": "2.4.0",
|
|
|
|
"sequelize-encrypted": "0.1.0",
|
|
|
|
"slug": "0.9.1",
|
2016-08-21 18:12:24 +00:00
|
|
|
"string-hash": "^1.1.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"style-loader": "0.13.0",
|
2016-05-24 07:11:34 +00:00
|
|
|
"truncate-html": "0.0.6",
|
2016-06-26 06:31:22 +00:00
|
|
|
"url-loader": "0.5.7",
|
|
|
|
"uuid": "2.0.2",
|
|
|
|
"validator": "5.2.0",
|
2016-08-22 06:52:28 +00:00
|
|
|
"webpack": "1.13.2"
|
2016-05-24 05:20:16 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-09-09 08:35:39 +00:00
|
|
|
"babel-jest": "^15.0.0",
|
|
|
|
"fetch-test-server": "^1.1.0",
|
2016-07-24 22:31:43 +00:00
|
|
|
"fsevents": "1.0.14",
|
2016-09-09 08:35:39 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2016-06-26 06:31:22 +00:00
|
|
|
"ignore-loader": "0.1.1",
|
2016-09-09 08:35:39 +00:00
|
|
|
"jest-cli": "^15.1.1",
|
2016-06-26 06:31:22 +00:00
|
|
|
"koa-webpack-dev-middleware": "1.2.0",
|
|
|
|
"koa-webpack-hot-middleware": "1.0.3",
|
|
|
|
"node-dev": "3.1.0",
|
2016-09-09 08:35:39 +00:00
|
|
|
"nodemon": "1.9.1",
|
|
|
|
"react-test-renderer": "^15.3.1"
|
2016-02-27 21:53:11 +00:00
|
|
|
}
|
|
|
|
}
|