forked from biering/graphql-apollo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.58 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": "graphql-apollo-boilerplate",
"version": "1.0.0",
"description": "Simple Express Backend w/ Webpack, ES6, ESLint, Hot-Reload Template",
"author": "Christoph Biering <[email protected]> (http://chryb.me)",
"repository": "https://github.com/chryb/graphql-apollo-boilerplate",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist && mkdir dist && webpack",
"dev": "npm run clean && concurrently --kill-others \"webpack --watch\" \"forever -w ./dist/bundle.js\"",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"build": "NODE_ENV=prod webpack",
"lint": "eslint --ext .js",
"start": "npm run build && node dist/bundle.js"
},
"dependencies": {
"apollo-server-express": "^1.1.2",
"body-parser": "^1.18.1",
"chalk": "^2.1.0",
"express": "^4.15.4",
"graphql": "^0.11.3",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.2.2",
"merge-graphql-schemas": "^1.1.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"eslint": "^4.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"forever": "^0.15.3",
"path": "^0.12.7",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
}
}