-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
114 lines (114 loc) · 3.38 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
{
"name": "React-Realtime-Chat",
"version": "1.0.0",
"scripts": {
"build": "NODE_ENV=production webpack -c --progress --config webpack/webpack.config.js",
"lint": "eslint --ignore-path .gitignore .",
"postinstall": "npm run build",
"prebuild": "rimraf build/*",
"prestart": "npm run build",
"start": "NODE_ENV=production node server",
"start-dev": "NODE_ENV=development nodemon server -w server",
"watch-client": "node webpack/webpack-dev-server.js",
"dev": "concurrently --kill-others \"npm run watch-client\" \"npm run start-dev\""
},
"devDependencies": {
"eslint": "3.5.0",
"eslint-config-richardkall": "5.0.1",
"nodemon": "1.10.2",
"webpack-dev-middleware": "1.7.0",
"webpack-hot-middleware": "2.12.2"
},
"dependencies": {
"apollo-client": "^0.7.3",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "6.14.0",
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"compression": "1.6.2",
"concurrently": "^3.1.0",
"css-loader": "0.25.0",
"css-modules-require-hook": "4.0.2",
"dateformat": "^2.0.0",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"graphql": "^0.8.2",
"graphql-server-express": "^0.4.4",
"graphql-subscriptions": "^0.2.2",
"graphql-tag": "^1.2.3",
"graphql-tools": "^0.9.0",
"gravatar": "^1.6.0",
"history": "4.0.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"jsonwebtoken": "^7.2.1",
"knex": "^0.12.6",
"moment": "^2.17.0",
"morgan": "1.7.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "0.13.0",
"react": "15.3.1",
"react-apollo": "^0.8.1",
"react-dom": "15.3.1",
"react-helmet": "3.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "4.4.5",
"react-router": "2.8.0",
"redux": "3.6.0",
"redux-form": "^6.4.3",
"redux-thunk": "^2.1.0",
"rimraf": "2.5.4",
"semantic-ui-react": "^0.63.5",
"sequelize": "^3.29.0",
"style-loader": "0.13.1",
"subscriptions-transport-ws": "^0.3.1",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"webpack-isomorphic-tools": "^2.6.5"
},
"description": "A full-stack reproduction of Slack, the popular realtime chat application, using React, Redux, Apollo, and more of the top modern web technologies Javascript has to offer.",
"repository": {
"type": "git",
"url": "git+https://github.com/adamjking3/React-Realtime-Chat.git"
},
"keywords": [
"full-stack",
"slack",
"clone",
"universal",
"react",
"redux",
"apollo",
"webpack",
"babel",
"graphql",
"subscriptions",
"express",
"hot",
"reloading",
"react-hot-loader",
"starter",
"boilerplate",
"realtime",
"chat",
"web application"
],
"author": "Adam King https://github.com/adamjking3",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamjking3/React-Realtime-Chat/issues"
},
"homepage": "https://github.com/adamjking3/React-Realtime-Chat#readme"
}