-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.35 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
100
101
{
"name": "rpl-2.0-web",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel src/ -d lib/ && webpack-dev-server -e --open --hot --mode development --host 0.0.0.0 --port 8088 --config webpack.config.js",
"build": "babel src/ -d lib/ && webpack --optimize-minimize --mode production --config webpack.config.js",
"build-dev": "babel src/ -d lib/ && webpack --optimize-minimize --mode development --config webpack.config.js",
"lint": "eslint ./src/**/**/*.js",
"flow": "flow",
"profile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json"
},
"engines": {
"node": "10.16.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reinvent-fiuba/RPL-2.0-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/reinvent-fiuba/RPL-2.0-web/issues"
},
"homepage": "https://github.com/reinvent-fiuba/RPL-2.0-web#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"compression-webpack-plugin": "^4.0.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.3.0",
"flow-bin": "^0.116.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"monaco-editor-webpack-plugin": "^1.9.1",
"node-env-run": "^4.0.2",
"npm-run-all": "^4.1.5",
"pino-colada": "^1.5.1",
"prettier": "^1.19.1",
"style-loader": "^1.3.0",
"to-string-loader": "^1.1.6",
"url-loader": "^2.3.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "latest",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"@types/react": "^17.0.3",
"chart.js": "^2.9.4",
"date-fns": "^2.21.1",
"dotenv-webpack": "^1.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"github-markdown-css": "^4.0.0",
"google-palette": "^1.1.0",
"lodash": "^4.17.21",
"material-ui-dropzone": "^3.5.0",
"monaco-editor": "^0.19.3",
"query-string": "^6.14.1",
"react": "^16.14.0",
"react-calendar-heatmap-fork": "^1.0.1",
"react-chartjs-2": "^2.11.1",
"react-diff-viewer": "^3.1.1",
"react-dom": "^16.14.0",
"react-mde": "^8.0.1",
"react-monaco-editor": "^0.40.0",
"react-palette": "^1.0.2",
"react-resize-detector": "^4.2.1",
"react-router-dom": "^5.2.0",
"react-showdown": "^2.3.0",
"react-sliding-side-panel": "^1.1.8",
"react-split-pane": "^0.1.92",
"showdown": "^1.9.1",
"webpack-dotenv-plugin": "^2.1.0"
}
}