{ "name": "parse-server", "version": "3.8.0", "description": "An express module providing a Parse-compatible API server", "main": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/parse-community/parse-server" }, "files": [ "bin/", "lib/", "public_html/", "views/", "LICENSE", "PATENTS", "postinstall.js", "README.md" ], "license": "BSD-3-Clause", "dependencies": { "@apollographql/graphql-playground-html": "1.6.24", "@parse/fs-files-adapter": "1.0.1", "@parse/push-adapter": "3.0.10", "@parse/s3-files-adapter": "1.2.3", "@parse/simple-mailgun-adapter": "1.1.0", "apollo-server-express": "2.9.3", "bcryptjs": "2.4.3", "body-parser": "1.19.0", "commander": "3.0.1", "cors": "2.8.5", "deepcopy": "2.0.0", "express": "4.17.1", "follow-redirects": "1.9.0", "graphql": "14.5.4", "graphql-list-fields": "2.0.2", "graphql-tools": "^4.0.5", "graphql-upload": "8.0.7", "intersect": "1.0.1", "jsonwebtoken": "8.5.1", "lodash": "4.17.15", "lru-cache": "5.1.1", "mime": "2.4.4", "mongodb": "3.3.2", "node-rsa": "1.0.5", "parse": "2.7.1", "pg-promise": "9.1.4", "pluralize": "^8.0.0", "redis": "2.8.0", "semver": "6.3.0", "subscriptions-transport-ws": "0.9.16", "tv4": "1.3.0", "uuid": "3.3.3", "winston": "3.2.1", "winston-daily-rotate-file": "3.10.0", "ws": "7.1.2" }, "devDependencies": { "@babel/cli": "7.6.0", "@babel/core": "7.6.0", "@babel/plugin-proposal-object-rest-spread": "7.5.5", "@babel/plugin-transform-flow-strip-types": "7.4.4", "@babel/preset-env": "7.6.0", "@parse/minami": "1.0.0", "apollo-cache-inmemory": "1.6.3", "apollo-client": "2.6.4", "apollo-link": "1.2.13", "apollo-link-http": "1.5.16", "apollo-link-ws": "1.0.19", "apollo-upload-client": "11.0.0", "apollo-utilities": "1.3.2", "babel-eslint": "10.0.3", "bcrypt-nodejs": "0.0.3", "cross-env": "5.2.1", "deep-diff": "1.0.2", "eslint": "6.3.0", "eslint-plugin-flowtype": "4.3.0", "flow-bin": "0.107.0", "form-data": "2.5.1", "gaze": "1.1.3", "graphql-tag": "^2.10.1", "husky": "3.0.5", "jasmine": "3.4.0", "jsdoc": "3.6.3", "jsdoc-babel": "0.5.0", "lint-staged": "9.2.5", "mongodb-runner": "4.7.2", "node-fetch": "2.6.0", "nyc": "14.1.1", "prettier": "1.18.2" }, "scripts": { "definitions": "node ./resources/buildConfigDefinitions.js", "docs": "jsdoc -c ./jsdoc-conf.json", "dev": "npm run build && node bin/dev", "lint": "flow && eslint --cache ./", "build": "babel src/ -d lib/ --copy-files", "watch": "babel --watch src/ -d lib/ --copy-files", "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} mongodb-runner start", "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} TESTING=1 jasmine", "test": "npm run testonly", "posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} mongodb-runner stop", "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} TESTING=1 nyc jasmine", "start": "node ./bin/parse-server", "prepare": "npm run build", "postinstall": "node -p 'require(\"./postinstall.js\")()'" }, "engines": { "node": ">= 8" }, "bin": { "parse-server": "./bin/parse-server" }, "optionalDependencies": { "bcrypt": "3.0.6" }, "collective": { "type": "opencollective", "url": "https://opencollective.com/parse-server", "logo": "https://opencollective.com/parse-server/logo.txt?reverse=true&variant=binary" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "{src,spec}/**/*.js": [ "prettier --write", "eslint --cache", "git add" ] } }