-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.98 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
{
"name": "madklub",
"version": "1.1.0",
"description": "Web application for managing madklub",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.config.prod.js --progress --profile --colors",
"build-server": "NODE_ENV=production webpack -p --config webpack.config.server.prod.js --progress --profile --colors",
"build-graphiql": "NODE_ENV=production webpack -p --config graphiql/webpack.config.js --progress --profile --colors",
"start-dev-server": "nodemon dist/backend.js",
"start": "node dist/backend.js",
"lint": "eslint --ext js --ext jsx src || exit 0",
"heroku-postbuild": "NODE_ENV=production webpack -p --config ./webpack.config.prod.js --progress --profile --colors && NODE_ENV=production webpack -p --config webpack.config.server.prod.js --progress --profile --colors && NODE_ENV=production webpack -p --config graphiql/webpack.config.js --progress --profile --colors"
},
"engines": {
"node": "8.9.0"
},
"repository": {
"type": "git",
"url": "madklub"
},
"dependencies": {
"apollo-cache-inmemory": "~1.0.0",
"apollo-client": "~2.0.1",
"apollo-link": "~1.0.0",
"apollo-link-http": "~1.1.0",
"apollo-local-query": "^0.3.1",
"apollo-utilities": "^1.0.1",
"app-root-path": "^2.0.1",
"babel-polyfill": "^6.22.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.1",
"body-parser": "^1.16.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-jwt": "^5.1.0",
"graphiql": "^0.9.2",
"graphql": "0.11",
"graphql-anywhere": "^3.0",
"graphql-relay": "^0.5.0",
"graphql-sequelize": "^5.5",
"history": "^4.5.0",
"immutability-helper": "^2.1.1",
"js-cookie": "^2.1.3",
"jsonwebtoken": "^7.2.1",
"moment": "^2.17.1",
"node-fetch": "^1.7.3",
"node-noop": "^1.0.0",
"nprogress": "^0.2.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"rc-time-picker": "^2.3.4",
"react": "^15.4.1",
"react-apollo": "~2.0.0",
"react-bootstrap": "^0.31",
"react-bootstrap-switch": "^15.0.4",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^4.0.0-beta.3",
"react-router-dom": "^4.0.0-beta.3",
"react-select": "^1.0.0-rc.3",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"sequelize": "^3.30",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"chunk-manifest-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^0.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.11.2",
"graphql-tag": "2.2.2",
"html-webpack-include-assets-plugin": "0.0.5",
"html-webpack-plugin": "^2.28.0",
"ignore-loader": "^0.1.2",
"nodemon": "^1.11.0",
"postcss-loader": "^1.2.2",
"react-hot-loader": "^3.0.0-beta.6",
"resource-hints-webpack-plugin": "0.0.1",
"source-map-support": "^0.4.11",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-manifest-plugin": "^1.1.0"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"dinnerclub",
"madklub",
"nodejs",
"express",
"react",
"graphql",
"redux",
"apollo",
"universal",
"jwt"
],
"author": "Peter Alexander Garnæs",
"license": "MIT"
}