-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.08 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
{
"private": true,
"name": "co-convo-ep",
"description": "ChatApp for Colleges",
"version": "1.0.0",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon --watch server --exec yarn run start",
"build:client": "NODE_ENV=production webpack --config webpack.prod.js",
"build:server": "NODE_ENV=production babel server -d dist",
"analyze": "NODE_ENV=production webpack --config webpack.analyze.js",
"test": "jest --watch",
"lint": "eslint --ext .js --ext .jsx .",
"heroku-postbuild": "NODE_ENV=production babel server -d dist"
},
"dependencies": {
"@babel/register": "^7.9.0",
"@hot-loader/react-dom": "^16.13.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@welldone-software/why-did-you-render": "^3.6.0",
"autoprefixer": "^9.7.4",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"emoji-mart": "^3.0.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"helmet": "^3.21.3",
"immer": "^5.3.6",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.22.0",
"mongoose": "^5.9.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^3.29.4",
"react-hot-loader": "^4.12.20",
"react-router-dom": "^5.1.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"tailwindcss": "^1.2.0",
"uuid": "^3.4.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@fullhuman/postcss-purgecss": "^1.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.3.0",
"get-port": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.2",
"mutationobserver-shim": "^0.3.3",
"nodemon": "^1.19.4",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.1.3",
"supertest": "^4.0.2",
"tailwindcss-important": "^1.0.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
}
}