-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "graphql-mongodb-server",
"version": "1.0.0",
"description": "A GraphQL MongoDB server.",
"main": "server/index.js",
"scripts": {
"dev": "nodemon --exec babel-node server/index.js",
"build": "babel . -d dist --ignore node_modules,dist",
"start": "npm run build && node dist/server/index.js",
"test": "jest --watch"
},
"keywords": [
"graphql",
"mongodb",
"boilerplate",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LuizFelipeNeves/graphql-mongodb-server.git"
},
"bugs": {
"url": "https://github.com/LuizFelipeNeves/graphql-mongodb-server/issues"
},
"author": "Luiz Felipe Neves <luizfelipe2310@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.0-beta.6"
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-jest": "^24.8.0",
"concurrently": "^4.1.1",
"core-js": "^3.1.4",
"graphql": "^14.4.2",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^4.0.5",
"graphql-yoga": "^1.18.1",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-dom": "^4.0.0",
"merge-graphql-schemas": "^1.6.1",
"mongoose": "^5.6.6",
"nodemon": "^1.19.1",
"uuid": "^3.3.2"
},
"jest": {
"setupFiles": [
"<rootDir>/config/tests/jest.config"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}