-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "hemera-graphql",
"private": true,
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "cross-env BABEL_DISABLE_CACHE=1 nodemon ./src/index.js --exec babel-node --watch ./src --out-dir ./build --copy-files --source-maps",
"build": "babel ./src --out-dir ./build --copy-files --source-maps",
"lint": "eslint .",
"format": "prettier --write ./src/**/*.js ./src/**/*.graphql"
},
"engines": {
"node": ">=8"
},
"author": "Dustin Deus <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-istanbul": "^5.1.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-hemera": "^1.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"nodemon": "^1.18.10",
"prettier": "^1.16.4"
},
"dependencies": {
"apollo-server": "^2.4.8",
"apollo-server-hapi": "^2.4.8",
"graphql": "^14.1.1",
"graphql-server-hapi": "^1.4.0",
"hapi": "^18.1.0",
"hemera-joi": "^6.0.0",
"hemera-plugin": "^2.0.0",
"nats": "^1.2.2",
"nats-hemera": "^7.0.0"
}
}