* chore(package): update husky to version 3.0.3 * chore(package): update lockfile package-lock.json
134 lines
4.2 KiB
JSON
134 lines
4.2 KiB
JSON
{
|
|
"name": "parse-server",
|
|
"version": "3.7.2",
|
|
"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.9",
|
|
"@parse/s3-files-adapter": "1.2.3",
|
|
"@parse/simple-mailgun-adapter": "1.1.0",
|
|
"apollo-server-express": "2.8.1",
|
|
"bcryptjs": "2.4.3",
|
|
"body-parser": "1.19.0",
|
|
"commander": "2.20.0",
|
|
"cors": "2.8.5",
|
|
"deepcopy": "2.0.0",
|
|
"express": "4.17.1",
|
|
"follow-redirects": "1.7.0",
|
|
"graphql": "14.4.2",
|
|
"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.2.7",
|
|
"node-rsa": "1.0.5",
|
|
"parse": "2.6.0",
|
|
"pg-promise": "9.0.0",
|
|
"redis": "2.8.0",
|
|
"semver": "6.3.0",
|
|
"subscriptions-transport-ws": "0.9.16",
|
|
"tv4": "1.3.0",
|
|
"uuid": "3.3.2",
|
|
"winston": "3.2.1",
|
|
"winston-daily-rotate-file": "3.10.0",
|
|
"ws": "7.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.5.5",
|
|
"@babel/core": "7.5.5",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
|
|
"@babel/plugin-transform-flow-strip-types": "7.4.4",
|
|
"@babel/preset-env": "7.5.5",
|
|
"@parse/minami": "1.0.0",
|
|
"apollo-cache-inmemory": "1.6.2",
|
|
"apollo-client": "2.6.3",
|
|
"apollo-link": "1.2.12",
|
|
"apollo-link-http": "1.5.15",
|
|
"apollo-link-ws": "1.0.18",
|
|
"apollo-upload-client": "11.0.0",
|
|
"apollo-utilities": "1.3.2",
|
|
"babel-eslint": "10.0.2",
|
|
"bcrypt-nodejs": "0.0.3",
|
|
"cross-env": "5.2.0",
|
|
"deep-diff": "1.0.2",
|
|
"eslint": "6.1.0",
|
|
"eslint-plugin-flowtype": "3.13.0",
|
|
"flow-bin": "0.104.0",
|
|
"form-data": "2.5.0",
|
|
"gaze": "1.1.3",
|
|
"graphql-tag": "^2.10.1",
|
|
"husky": "3.0.3",
|
|
"jasmine": "3.4.0",
|
|
"jsdoc": "3.6.3",
|
|
"jsdoc-babel": "0.5.0",
|
|
"lint-staged": "9.2.1",
|
|
"mongodb-runner": "4.3.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": "npm run pretest && 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 && npm run posttest",
|
|
"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"
|
|
]
|
|
}
|
|
}
|