forked from WeLikeGraphQL/universal-react-apollo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.77 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.77 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "universal-react-apollo-example",
"version": "0.1.0",
"description": "An example application using React, GraphQL, Apollo, Redux",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/welikegraphql/universal-react-apollo-example"
},
"keywords": [
"webpack",
"react",
"graphql",
"apollo",
"redux"
],
"author": "graphan",
"license": "MIT",
"bugs": {
"url": "https://github.com/welikegraphql/universal-react-apollo-example/issues"
},
"homepage": "https://github.com/welikegraphql/universal-react-apollo-example",
"scripts": {
"babel": "babel --presets es2015,stage-0",
"babel-node": "babel-node --presets es2015,stage-0 --ignore node_modules,dist",
"build": "npm run clean && npm run build:prod && npm run build:server",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack/dev-server.js",
"build:dll": "webpack --config ./webpack/dll.js",
"build:prod": "cross-env NODE_ENV=production webpack --colors --config ./webpack/prod.js",
"build:server": "cross-env NODE_ENV=production npm run babel -- ./server -d ./compiled",
"clean": "rimraf dist && rimraf compiled && rimraf dll",
"dev": "npm run clean && npm run build:dll && cross-env NODE_ENV=development nodemon",
"lint": "eslint *",
"lint:fix": "eslint --fix *",
"start": "cross-env NODE_ENV=production node compiled/index.js",
"update:schema": "npm run babel-node scripts/updateSchema"
},
"dependencies": {
"apollo-client": "~0.4.14",
"babel-polyfill": "^6.16.0",
"dotenv": "~2.0.0",
"flag-icon-css": "~2.4.0",
"graphql": "0.4.14",
"graphql-tag": "~0.1.7",
"isomorphic-fetch": "~2.2.1",
"react": "~15.3.1",
"react-apollo": "~0.5.2",
"react-bootstrap": "~0.30.3",
"react-css-modules": "~3.7.10",
"react-dom": "~15.3.1",
"react-redux": "~4.4.5",
"react-scroll": "~1.4.0",
"redux": "~3.6.0",
"wow.js": "^1.2.2"
},
"devDependencies": {
"babel": "~6.5.2",
"babel-cli": "~6.14.0",
"babel-core": "~6.14.0",
"babel-eslint": "~6.1.0",
"babel-loader": "~6.2.4",
"babel-plugin-react-transform": "~2.0.0-beta1",
"babel-plugin-transform-decorators-legacy": "1.x.x",
"babel-plugin-transform-react-constant-elements": "~6.9.1",
"babel-plugin-transform-react-display-name": "~6.8.0",
"babel-plugin-transform-react-inline-elements": "~6.8.0",
"babel-plugin-transform-react-remove-prop-types": "~0.2.9",
"babel-preset-es2015": "~6.14.0",
"babel-preset-react": "~6.11.1",
"babel-preset-react-hmre": "~1.1.1",
"babel-preset-stage-0": "~6.5.0",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "~2.0.1",
"css-loader": "~0.25.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-graphql": "~0.2.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"exports-loader": "~0.6.3",
"express": "~4.14.0",
"extract-text-webpack-plugin": "~1.0.1",
"helmet": "^2.3.0",
"html-webpack-plugin": "~2.22.0",
"imports-loader": "~0.6.5",
"isomorphic-style-loader": "^1.0.0",
"json-loader": "~0.5.4",
"nodemon": "~1.9.2",
"null-loader": "^0.1.1",
"postcss-cssnext": "~2.8.0",
"postcss-import": "~8.1.2",
"postcss-loader": "~0.13.0",
"postcss-sassy-mixins": "~2.0.0",
"react-transform-catch-errors": "~1.0.0",
"react-transform-hmr": "~1.0.0",
"redbox-react": "~1.3.0",
"rimraf": "~2.5.4",
"style-loader": "~0.13.0",
"stylelint-webpack-plugin": "^0.4.0",
"sync-request": "^3.0.1",
"url-loader": "~0.5.7",
"webpack": "~1.13.2",
"webpack-dev-middleware": "~1.7.0",
"webpack-hot-middleware": "~2.12.2",
"write-file-webpack-plugin": "~3.3.0"
}
}