-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.95 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
{
"name": "cah",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "nodemon server/dist/Routes/routes.js",
"dev": "concurrently --kill-others-on-fail \"npm run b\" \"npm run server\" \"tsc -w\"",
"start": "npm run server",
"b": "node_modules/.bin/webpack --config webpack.config.js --mode development"
},
"author": "",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"client/",
"public/",
"server/src"
],
"delay": "1000"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"node-gyp": "^3.8.0",
"parallel-webpack": "^2.4.0",
"style-loader": "^0.23.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^4.1.2",
"crypto-random-string": "^1.0.0",
"dotenv": "^4.0.0",
"emoji-picker-react": "^3.1.3",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"faker": "^4.1.0",
"helmet": "^3.22.0",
"ip": "^1.1.5",
"mongoose": "^5.9.7",
"multer": "^1.4.2",
"ngrok": "^3.2.7",
"nodemon": "^1.19.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-linkify": "^1.0.0-alpha",
"react-redux": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}