-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "edumips64-webui",
"version": "1.0.0",
"description": "The web UI for EduMIPS64 (web.edumips.org). Depends on the web worker implementation of the EduMIPS64 core (worker.js).",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build-dbg": "webpack",
"build": "webpack --mode production",
"test": "npx playwright test"
},
"keywords": [],
"author": "Andrea Spadaccini",
"license": "GPL-2.0-or-later",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@microsoft/applicationinsights-web": "^3.0.0",
"@mui/icons-material": "^5.14.13",
"@mui/material": "^5.9.0",
"lodash": "^4.17.19",
"monaco-editor-webpack-plugin": "^7.0.0",
"node-forge": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.0",
"react-monaco-editor": "^0.56.0",
"react-redux": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.26.5",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/runtime": "7.26.0",
"@playwright/test": "1.49.0",
"babel-loader": "9.2.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"file-loader": "6.2.0",
"git-revision-webpack-plugin": "5.0.0",
"playwright": "1.49.0",
"prettier": "3.4.2",
"style-loader": "4.0.0",
"webpack": "5.96.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
}
}