-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"name": "realtime-chat",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.8.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"connected-react-router": "^4.4.1",
"express": "^4.16.2",
"express-flash-messages": "^0.1.1",
"express-session": "^1.15.6",
"history": "^4.7.2",
"md5": "^2.2.1",
"mongodb": "^3.1.4",
"mongoose": "5.2.8",
"morgan": "^1.9.0",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"ramda": "^0.25.0",
"react": "^16.4.2",
"react-app-rewire-less": "^2.1.2",
"react-app-rewired": "^1.5.2",
"react-css-loaders": "0.0.5",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"reduxsauce": "^1.0.0",
"seamless-immutable": "^7.1.4",
"tracer": "^0.9.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"client": "yarn start",
"server": "nodemon server/server.js",
"dev": "concurrently -k --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"proxy": "http://localhost:5000/",
"devDependencies": {
"babel-eslint": "8",
"babel-plugin-import": "^1.8.0",
"concurrently": "^3.5.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react-app": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"prop-types": "^15.6.2"
}
}