-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.74 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
{
"name": "vanDevTimes",
"version": "1.0.0",
"description": "Boilerplate to build a full stack web application using React, Node.js, Express and Webpack.",
"main": "app.js",
"scripts": {
"build": "webpack --mode production",
"server": "webpack-dev-server --host 127.0.0.1 --port 4000 --mode development --open --compress",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"start": "node app.js",
"dev": "concurrently \"nodemon app.js\" \"npm run client\"",
"test": "concurrently \"nodemon app.js\" \"newman run postman_test_script.json -e postman_environment.json\""
},
"author": "Byte Me",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"axios": "^0.19.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"date-fns": "^2.10.0",
"ejs": "^3.0.1",
"express": "^4.16.3",
"express-server": "^0.7.0",
"feedparser": "^2.2.9",
"formik": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"material-table": "^1.57.2",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"newman": "^4.6.1",
"node-cron": "^2.0.3",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-facebook-token": "^3.3.0",
"passport-google-token": "^0.1.2",
"pug": "^2.0.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.1.1",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-table": "^7.0.0",
"react-twitter-auth": "0.0.13",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"request": "^2.88.2",
"utils": "^0.3.1",
"valid-url": "^1.0.9",
"yup": "^0.28.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@material-ui/lab": "^4.0.0-alpha.46",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.17.3",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.3"
}
}