-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "dashboard-ui",
"version": "1.0.0",
"engines": {
"node": "8.12.0",
"npm": "6.4.1"
},
"description": "a-new",
"main": "index.js",
"scripts": {
"start": "nodemon dist/server.bundle.js",
"compile-client": "webpack --mode development",
"compile-server": "webpack --config webpack.server-config.js --mode development",
"watch-client": "webpack-dev-server --hot --inline --mode development",
"watch-server": "webpack --config webpack.server-config.js --watch --mode development",
"build-client": "webpack --mode production",
"build-server": "webpack --config webpack.server-config.js --mode production",
"dev": "npm run watch-client & npm run watch-server & npm start",
"build": "npm run build-server & npm run build-client",
"start-test": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "-"
},
"keywords": [
"-"
],
"author": "Juraj",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.2.1",
"babel-runtime": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^3.4.1",
"clean-webpack-plugin": "^1.0.0",
"clone-deep": "^4.0.1",
"core-js": "^2.6.5",
"cors": "^2.8.4",
"d3": "^4.13.0",
"d3-selection-multi": "^0.4.1",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"forever": "^1.0.0",
"history": "^4.9.0",
"moment": "^2.24.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "16.8.6",
"react-router-dom": "^4.1.2",
"react-scripts": "3.0.1",
"rethinkdb": "^2.3.3",
"rethinkdbdash": "^2.3.31",
"shuffle-array": "^1.0.1",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^3.0.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.2",
"gulp": "^4.0.0",
"gulp-exec": "^3.0.2",
"gulp4-run-sequence": "^0.1.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.8.3",
"nodemon": "^1.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.1.3",
"webpack-visualizer-plugin": "^0.1.11",
"whatwg-fetch": "^1.0.0"
}
}