-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
84
85
86
87
88
89
90
91
{
"name": "mongoose-schema-to-graphql",
"version": "2.8.1",
"description": "Auto types generator for graphQL schema, based on your existed Mongoose schema. Check GitHub for description.",
"main": "lib/index.min.js",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "NODE_ENV=development babel src/index.js --source-maps --out-file lib/index.js",
"build:prod": "NODE_ENV=production babel src/index.js --out-file lib/index.min.js",
"test": "npm run build && jest",
"prepublish": "npm run test"
},
"keywords": [
"mongo",
"mongoose",
"Mongoose",
"mongoose schema",
"mongoose graphql",
"mongoose-schema to graphQL",
"mongoose schema to graphQL",
"mongoDb",
"mongodb",
"graphQL",
"graphql",
"schema",
"GrpahQL",
"MongoDb",
"schema generator",
"auto schema",
"GQL",
"jsx",
"apollo",
"react",
"React",
"Meteor",
"Angular",
"Angular2",
"meteor",
"angular",
"angular2"
],
"author": {
"name": "Sarkis Arutiunian ([email protected])"
},
"repository": {
"type": "git",
"url": "https://github.com/sarkistlt/mongoose-schema-to-graphql.git"
},
"bugs": {
"url": "https://github.com/sarkistlt/mongoose-schema-to-graphql/issues"
},
"homepage": "https://github.com/sarkistlt/mongoose-schema-to-graphql#readme",
"license": "MIT",
"peerDependencies": {
"graphql": ">=0.7.1",
"mongoose": "^4.11.7"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-babel-webpack-plugin": "^1.1.0",
"flow-bin": "^0.53.1",
"jest": "^20.0.4",
"regenerator-runtime": "^0.11.0",
"graphql": ">=0.7.1",
"mongoose": "^4.11.7"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"dependencies": {
"graphql-iso-date": "^3.6.1"
}
}