* chore(package): update mongodb-runner to version 4.2.0 * chore(package): update lockfile package-lock.json
114 lines
3.0 KiB
JSON
114 lines
3.0 KiB
JSON
{
|
|
"name": "parse-server",
|
|
"version": "3.0.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": {
|
|
"@parse/fs-files-adapter": "1.0.1",
|
|
"@parse/push-adapter": "3.0.0",
|
|
"@parse/s3-files-adapter": "1.2.1",
|
|
"@parse/simple-mailgun-adapter": "1.1.0",
|
|
"bcryptjs": "2.4.3",
|
|
"body-parser": "1.18.3",
|
|
"commander": "2.18.0",
|
|
"deepcopy": "1.0.0",
|
|
"express": "4.16.2",
|
|
"follow-redirects": "1.5.8",
|
|
"intersect": "1.0.1",
|
|
"lodash": "4.17.11",
|
|
"lru-cache": "4.1.3",
|
|
"mime": "2.3.1",
|
|
"mongodb": "3.1.6",
|
|
"parse": "2.1.0",
|
|
"pg-promise": "8.4.6",
|
|
"redis": "2.8.0",
|
|
"semver": "5.5.1",
|
|
"tv4": "1.3.0",
|
|
"uuid": "^3.1.0",
|
|
"winston": "2.4.1",
|
|
"winston-daily-rotate-file": "1.7.2",
|
|
"ws": "6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.1.0",
|
|
"@babel/core": "7.1.0",
|
|
"@babel/plugin-transform-flow-strip-types": "7.0.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
|
|
"@babel/preset-env": "7.1.0",
|
|
"@parse/minami": "^1.0.0",
|
|
"babel-eslint": "^10.0.0",
|
|
"bcrypt-nodejs": "0.0.3",
|
|
"cross-env": "5.2.0",
|
|
"deep-diff": "1.0.2",
|
|
"eslint": "^5.0.0",
|
|
"eslint-plugin-flowtype": "^2.39.1",
|
|
"flow-bin": "0.81.0",
|
|
"gaze": "1.1.3",
|
|
"husky": "^1.0.0-rc.13",
|
|
"jasmine": "3.1.0",
|
|
"jasmine-spec-reporter": "^4.1.0",
|
|
"jsdoc": "^3.5.5",
|
|
"jsdoc-babel": "^0.5.0",
|
|
"lint-staged": "^7.2.2",
|
|
"mongodb-runner": "4.2.0",
|
|
"nodemon": "1.18.4",
|
|
"nyc": "^12.0.2",
|
|
"prettier": "1.14.3",
|
|
"supports-color": "^5.4.0"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 jasmine",
|
|
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} 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.1",
|
|
"uws": "10.148.1"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|