pixelplanet/package.json

142 lines
4.7 KiB
JSON
Raw Normal View History

2020-01-02 16:58:06 +00:00
{
"name": "PixelPlanet",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=10.16.0",
2020-01-02 16:58:06 +00:00
"npm": ">=6.13.4"
},
"description": "Unlimited planet canvas for placing pixels",
"main": "server.js",
"scripts": {
"build": "babel-node tools/run build",
"clean": "babel-node tools/run clean",
2020-01-03 23:34:51 +00:00
"babel-node": "cd $INIT_CWD && babel-node",
"lint": "cd $INIT_CWD && eslint --ext .jsx --ext .js",
"lint:src": "eslint --ext .jsx --ext .js src",
2020-01-02 16:58:06 +00:00
"lint:css": "stylelint \"src/**/*.{css,less,scss,sss}\"",
"lint:staged": "lint-staged",
"upgrade": "npm-check --update"
2020-01-02 16:58:06 +00:00
},
"author": "HF <hf@example.com>",
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
2020-01-02 16:58:06 +00:00
],
"dependencies": {
"bcrypt": "^3.0.6",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"bufferutil": "^4.0.1",
2020-01-02 16:58:06 +00:00
"compression": "^1.7.3",
"connect-redis": "^4.0.3",
2020-01-02 16:58:06 +00:00
"cookie-parser": "^1.4.3",
"core-js": "^3.6.1",
"cors": "^2.8.4",
"etag": "^1.8.1",
"express": "^4.15.3",
"express-limiter": "^1.6.0",
"express-session": "^1.15.2",
"global": "^4.3.2",
"hammerjs": "^2.0.8",
2020-01-04 11:11:05 +00:00
"http-proxy-agent": "^3.0.0",
"ip-address": "^6.2.0",
2020-01-02 16:58:06 +00:00
"isomorphic-fetch": "^2.2.1",
"keycode": "^2.1.9",
"localforage": "^1.5.0",
"morgan": "^1.8.2",
"multer": "^1.4.1",
"mysql2": "^2.1.0",
2020-01-21 21:36:36 +00:00
"node-sass": "^4.13.1",
"nodemailer": "^6.4.2",
2020-01-02 16:58:06 +00:00
"passport": "^0.4.0",
"passport-discord": "^0.1.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
2020-01-02 16:58:06 +00:00
"passport-json": "^1.2.0",
"passport-reddit": "^0.2.4",
"passport-vkontakte": "^0.3.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-file-download": "^0.3.4",
"react-icons": "^3.7.0",
"react-modal": "^3.10.1",
"react-redux": "^7.1.1",
"react-responsive": "^8.0.1",
"react-stay-scrolled": "^7.0.0",
"react-toggle-button": "^2.1.0",
"redis": "^2.7.1",
"redlock": "^4.0.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.2.0",
"sequelize": "^5.19.2",
"sharp": "^0.23.4",
"startaudiocontext": "^1.2.1",
"sweetalert2": "^9.5.4",
"three": "^0.112.1",
"three-trackballcontrols-ts": "^0.1.2",
2020-01-02 16:58:06 +00:00
"url-search-params-polyfill": "^7.0.0",
2020-01-04 11:11:05 +00:00
"winston": "^3.2.1",
2020-01-03 03:16:15 +00:00
"ws": "^7.1.2"
},
"devDependencies": {
2020-01-02 16:58:06 +00:00
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
2020-01-21 21:36:36 +00:00
"@babel/plugin-proposal-class-properties": "^7.8.3",
2020-01-02 16:58:06 +00:00
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
2020-01-21 21:36:36 +00:00
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
2020-01-02 16:58:06 +00:00
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.6.3",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
2020-01-21 21:36:36 +00:00
"@babel/preset-typescript": "^7.8.3",
2020-01-02 16:58:06 +00:00
"assets-webpack-plugin": "^3.5.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
2020-01-04 00:11:08 +00:00
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.5.3",
2020-01-02 16:58:06 +00:00
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
2020-01-02 16:58:06 +00:00
"eslint-plugin-react": "^7.0.1",
2020-01-04 11:11:05 +00:00
"flow-bin": "^0.115.0",
"generate-package-json-webpack-plugin": "^1.0.1",
2020-01-02 16:58:06 +00:00
"json-loader": "^0.5.4",
"npm-check": "^5.9.0",
2020-01-02 16:58:06 +00:00
"react-hot-loader": "^4.12.14",
"react-svg-loader": "^3.0.3",
2020-01-04 11:11:05 +00:00
"rimraf": "^3.0.0",
2020-01-04 00:11:08 +00:00
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
2020-01-02 16:58:06 +00:00
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^3.6.0",
2020-01-02 16:58:06 +00:00
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.18.0",
2020-01-03 23:34:51 +00:00
"write-file-webpack-plugin": "^4.0.2"
2020-01-02 16:58:06 +00:00
}
}