forked from algolia/mongoolia
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "mongoolia-v5",
"version": "1.0.2",
"description": "Keep your mongoose schemas synced with Algolia",
"homepage": "https://github.com/thedv91/mongoolia",
"repository": "thedv91/mongoolia",
"main": "dist/index.js",
"author": "Algolia <support@algolia.com>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist",
"test": "jest",
"pre-publish": "yarn build"
},
"files": [
"dist"
],
"dependencies": {
"algoliasearch": "^3.33.0",
"lodash": "^4.17.11",
"mongoose": "^5.5.9"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^5.16.0",
"eslint-config-algolia": "^13.3.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^3.9.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.98.1",
"flow-typed": "^2.5.2",
"jest": "^24.8.0",
"prettier": "^1.17.1"
}
}