-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@natac13/mongoose-dataloader",
"version": "3.1.3",
"description": "Two ways to use Dataloader with Mongoose for MongoDB",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"build": "babel src --ignore 'src/__tests__' --out-dir dist",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"coverage": "jest --coverage",
"deploy": "npm publish",
"predeploy": "npm run build",
"demo": "node -r @babel/register models/installDemo.js"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/natac13/Mongoose-Dataloader.git"
},
"keywords": [
"mongoose",
"dataloader",
"graphql"
],
"author": "Sean Campbell <[email protected]> (https://seancampbellnatac.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/natac13/Mongoose-Dataloader/issues"
},
"homepage": "https://github.com/natac13/Mongoose-Dataloader#readme",
"dependencies": {
"dataloader": "1.4.0",
"mongoose": "5.7.12",
"ramda": "0.26.1"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@babel/runtime": "7.5.5",
"@shelf/jest-mongodb": "1.1.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.2",
"babel-jest": "25.4.0",
"babel-loader": "8.0.6",
"babel-plugin-ramda": "2.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"casual": "1.6.2",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"jest": "25.4.0",
"mongodb-memory-server": "5.1.5",
"nodemon": "2.0.3",
"path": "0.12.7",
"prettier": "1.18.2",
"regenerator-runtime": "0.13.3",
"rimraf": "2.6.3",
"webpack": "4.36.1",
"webpack-cli": "3.3.6",
"webpack-visualizer-plugin": "0.1.11"
}
}