Files
kami-parse-server/package.json
Felix Rieseberg 1cddbb0a37 🏁 Add Windows Support (bcrypt > bcrypt-node)
- This commit replaces bcrypt with bcrypt-node, which has the same functionality as bcrypy - except that it is a pure Node implementation. This change is required to run parse-server on Windows (one can get bcrypt to compile on Windows, but it requires a few Gigabytes of dependencies).
2016-02-01 10:30:12 -08:00

33 lines
703 B
JSON

{
"name": "parse-server",
"version": "2.0.3",
"description": "An express module providing a Parse-compatible API server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-server"
},
"license": "BSD-3-Clause",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.12.4",
"deepcopy": "^0.5.0",
"express": "~4.2.x",
"hat": "~0.0.3",
"mime": "^1.3.4",
"mongodb": "~2.0.33",
"multer": "~0.1.8",
"parse": "~1.6.12",
"request": "^2.65.0"
},
"devDependencies": {
"jasmine": "^2.3.2"
},
"scripts": {
"test": "TESTING=1 jasmine"
},
"engines": {
"node": ">=4.1"
}
}