-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·154 lines (154 loc) · 5.04 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "auth-flow-ssr",
"version": "0.0.0",
"author": "Yun Xing",
"license": "MIT",
"description": "Full stack login/register flow with React's Server Side Rendering. Next, Apollo, Redux, Redux-saga and MongoDB.",
"repository": {
"type": "git",
"url": "https://github.com/BigFatDog/auth-flow-ssr"
},
"engines": {
"npm": ">=3",
"node": ">=5"
},
"scripts": {
"dev": "babel-node server",
"build": "next build",
"start": "NODE_ENV=production babel-node server",
"i18n": "babel-node ./tools/extract-intl",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:js": "npm run lint:eslint -- . ",
"lint:fix": "eslint **/*.js --fix",
"generate": "plop --plopfile tools/generators/index.js",
"pretty": "prettier --single-quote --trailing-comma es5 --write \"{components,containers,core,server,pages,styles,tools,i18n}/**/*.js\""
},
"dependencies": {
"accepts": "^1.3.4",
"apollo-cache-inmemory": "^1.1.5",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.2.0",
"apollo-engine": "^0.8.4",
"apollo-fetch": "^0.7.0",
"apollo-fetch-upload": "^1.2.0",
"apollo-link": "^1.0.7",
"apollo-link-batch-http": "^1.0.4",
"apollo-link-context": "^1.0.3",
"apollo-link-error": "^1.0.3",
"apollo-link-http": "^1.3.2",
"apollo-link-persisted-queries": "^0.1.0",
"apollo-link-ws": "^1.0.4",
"apollo-logger": "0.1.1",
"apollo-server-express": "^1.3.2",
"apollo-upload-server": "^4.0.0-alpha.3",
"axios": "^0.17.1",
"bcrypt": "^1.0.3",
"bootstrap": "^3.3.7",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"graphql": "^0.12.3",
"graphql-anywhere": "^4.1.1",
"graphql-auth": "^0.2.0",
"graphql-iso-date": "^3.3.0",
"graphql-subscriptions": "^0.5.6",
"graphql-tag": "^2.6.1",
"graphql-tools": "^2.18.0",
"immutable": "^3.8.2",
"intl": "^1.2.5",
"ip": "^1.1.5",
"isomorphic-unfetch": "^2.0.0",
"jquery": "^3.2.1",
"jwt-decode": "^2.2.0",
"localforage": "^1.5.5",
"mapbox-gl": "^0.43.0",
"mongoose": "^5.0.0",
"mongoose-mongodb-errors": "0.0.2",
"next": "^4.4.0-canary.3",
"next-redux-saga": "^1.0.1",
"next-redux-wrapper": "^1.3.5",
"next-routes": "^1.2.0",
"ngrok": "^2.2.24",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.4.0",
"prop-types": "^15.6.0",
"prop-types-exact": "^1.1.2",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-intl": "^2.4.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"styled-components": "^2.4.0",
"subscriptions-transport-ws": "^0.9.5",
"uuid": "^3.2.1"
},
"devDependencies": {
"add-asset-html-webpack-plugin": "2.1.2",
"autoprefixer": "^7.2.5",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-loader": "7.1.2",
"babel-plugin-dynamic-import-node": "1.2.0",
"babel-plugin-inline-import-graphql-ast": "^2.0.4",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-react-intl": "2.3.1",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-styled-components": "^1.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.12",
"babel-plugin-wrap-in-js": "^1.1.1",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chalk": "^2.3.0",
"css-loader": "^0.28.9",
"eslint": "4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"eslint-plugin-redux-saga": "0.6.0",
"node-sass": "^4.7.2",
"pixrem": "^4.0.1",
"pleeease-filters": "^4.0.0",
"plop": "1.9.1",
"postcss": "^6.0.16",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.2.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-easy-import": "^3.0.0",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-media-minmax": "^3.0.0",
"postcss-nested": "^3.0.0",
"postcss-nesting": "^4.2.1",
"postcss-pseudoelements": "^5.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"prettier": "1.10.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.0",
"style-loader": "^0.19.1"
}
}