-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "graphql-mongo",
"libraryName": "GraphQLMongo",
"version": "0.1.0",
"description": "",
"source": "./src/index.ts",
"types": "./src/index.d.ts",
"main": "./lib/index.js",
"scripts": {
"start": "nodemon example/ --exec babel-node",
"test": "mocha test/**/*.spec",
"build": "NODE_ENV=production webpack",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kettanaito/graphql-mongo.git"
},
"keywords": [
"graphql",
"mongodb",
"mongoose",
"graphql-mongo"
],
"author": "Artem Zakharchenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/kettanaito/graphql-mongo/issues"
},
"homepage": "https://github.com/kettanaito/graphql-mongo#readme",
"peerDependencies": {
"mongoose": "^4.12.1",
"graphql": "^0.11.7",
"mongoose-schema-to-graphql": "^2.6.9"
},
"devDependencies": {
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"mocha": "^4.0.1",
"mongoose": "^4.12.1",
"nodemon": "^1.12.1",
"typescript": "^2.5.3",
"webpack": "^3.7.1"
},
"dependencies": {
"mongoose-schema-to-graphql": "^2.6.9"
}
}