-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "ThinkGames - The Place to Talk About Games",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "react-scripts build",
"test": "mocha --require ignore-styles --recursive --compilers js:babel-core/register",
"eject": "react-scripts eject",
"flow": "flow"
},
"engines": {
"node": "7.5.0"
},
"keywords": [],
"author": "Jacob Askew <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"css-loader": "^0.28.4",
"express": "^4.15.2",
"file-loader": "^0.11.1",
"jwt-simple": "^0.5.1",
"moment": "^2.18.1",
"mongoose": "^4.9.8",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"react": "15.4.2",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "3.0.5",
"react-router-bootstrap": "^0.23.3",
"redux": "^3.6.0",
"redux-devtools": "^3.4.0",
"redux-thunk": "^2.2.0",
"socket.io": "^2.0.1",
"style-loader": "^0.18.1",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"flow-bin": "^0.51.0",
"react-scripts": "0.9.0"
}
}