-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 758 Bytes
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
{
"name": "yoga-mongodb",
"version": "0.0.0",
"description": "GraphQL-YOGA Example with mongodb",
"main": "src/index.js",
"scripts": {
"test": "npm run test",
"dev": "nodemon --exec babel-node src/index.js",
"build": "NODE_ENV=PRODUCTION babel src -d dist --copy-files",
"serve": "NODE_ENV=production node dist/index.js"
},
"keywords": [
"gql",
"yoga",
"mongodb"
],
"author": "Daksh Miglani <hello@dak.sh>",
"license": "MIT",
"dependencies": {
"graphql-yoga": "^1.14.4",
"mongoose": "^5.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.17.5"
}
}