-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "foratest",
"version": "1.0.0",
"description": "Chat service with video streaming posibilities",
"main": "./server/server.js",
"scripts": {
"start": "set NODE_ENV=production && node ./server/server.js",
"test": "test",
"devServer": "set NODE_ENV=development && nodemon ./server/server.js",
"dev": "set API_URL=http://localhost:9001 && webpack-dev-server --open --config webpack.dev.js",
"build": "set API_URL=http://localhost:9001 && webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yurbly/ForaTest.git"
},
"author": "Iurii Novikov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yurbly/ForaTest/issues"
},
"homepage": "https://github.com/Yurbly/ForaTest#readme",
"proxy": {
"*": {
"target": "http://localhost:9001/fora/"
}
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@material-ui/core": "^3.7.0",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"connected-react-router": "^6.0.0",
"dateformat": "^3.0.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"history": "^4.7.2",
"path": "^0.12.7",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2",
"webpack": "^4.27.1",
"webpack-merge": "^4.1.5"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"nodemon": "^1.18.9",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack-dev-server": "^3.1.10"
}
}