-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.5 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
{
"name": "express-graphql-boilerplate",
"version": "1.0.0",
"description": "Node boilerplate with express, graphql, babel, mongoose",
"main": "./dist/server.js",
"scripts": {
"start": "node ./dist/server.js",
"dev": "nodenv -e nodemon -- --exec",
"precommit": "pretty-quick --staged",
"build": "babel ./src -d ./dist --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conradoramalho/express-graphql-boilerplate.git"
},
"keywords": [
"graphql",
"node",
"express"
],
"author": "Conrado Ramlho",
"license": "MIT",
"bugs": {
"url": "https://github.com/conradoramalho/express-graphql-boilerplate/issues"
},
"nodemonConfig": {
"exec": "babel-node ./src/server.js"
},
"homepage": "https://github.com/conradoramalho/express-graphql-boilerplate#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-iso-date": "^3.5.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.0.17"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/node": "^7.0.0-beta.46",
"@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.46",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"nodemon": "^1.17.4",
"dotenv": "^6.0.0",
"node-env-run": "^3.0.2"
}
}