-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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": "graphql-guru-mongodb",
"version": "0.0.1",
"description": "MongoDB resolver modules fro GraphQL Guru",
"main": "dist/mongodb-database",
"keywords": [
"graphql",
"graphql.guru",
"graphql-guru",
"guru",
"resolvers",
"mongodb"
],
"scripts": {
"build": "node ./node_modules/@graphql-guru/babel-tasks/tasks.js",
"watch": "npm run build -- -w",
"lint": "eslint --quiet './src' || true",
"test": "ava --fail-fast server/__tests__",
"test:spec": "ava server/__tests__ -v",
"test:watch": "watch 'npm run test' ./server"
},
"dependencies": {
"@graphql-guru/babel-tasks": "^1.0.3",
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bluebird": "^3.5.0",
"class-autobind": "^0.1.4",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-graphql": "^1.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mongodb": "^2.2.26",
"watch": "^1.0.2"
}
}