-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.88 KB
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
{
"name": "react_frontend",
"version": "1.0.0",
"description": "React frontend for unibotics web server",
"main": "index.js",
"author": "David María Arribas <dmariaa70@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack --mode development --output-path ./static/react_frontend --watch",
"build": "webpack --mode production --output-path ./static/react_frontend",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^9.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.1.0",
"sass-loader": "^12.6.0",
"webpack": "^5.94.0",
"webpack-bundle-tracker": "^1.5.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hedgedoc/html-to-react": "^1.4.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.91",
"@mui/material": "^5.8.5",
"@mui/system": "^5.10.9",
"@react-three/fiber": "^8.6.0",
"ace-builds": "^1.7.1",
"classnames": "^2.3.1",
"fs": "^0.0.1-security",
"glob": "^8.0.3",
"js-yaml": "^4.1.1",
"loglevel": "^1.8.0",
"mui-image": "^1.0.5",
"prop-types": "^15.8.1",
"react-ace": "^10.1.0",
"react-bootstrap": "^2.7.4",
"react-brace": "^3.6.6",
"react-router-dom": "^6.30.3",
"react-use": "^17.4.0",
"react-vnc": "^3.1.0",
"styled-components": "^5.3.6",
"three": "^0.144.0"
}
}