forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "realworld-graphql",
"version": "1.0.0",
"description": "Realword implemented with GraphQL server",
"main": "build/server.js",
"repository": "https://github.com/thebergamo/realworld-graphql.git",
"author": "Marcos Bérgamo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d build",
"lint": "eslint src jest",
"start": "node build/server.js",
"dev": "nodemon -e js,graphql -w ./src bootstrap.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"boom": "^4.3.1",
"glob": "^7.1.1",
"good": "^7.1.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"graphql": "^0.9.4",
"graphql-server-hapi": "^0.7.2",
"graphql-tools": "^0.11.0",
"hapi": "^16.1.1",
"hapi-auth-jwt2": "^7.2.4",
"joi": "^10.4.1",
"jsonwebtoken": "^7.4.0",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-inline-import": "^2.0.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-watch": "^3.1.0",
"nodemon": "^1.11.0"
}
}