-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "risc-v-graphical-datapath-simulator",
"version": "1.0.0",
"description": "A web-based graphical simulator for a simple 32-bit, single-cycle implementation of RISC-V.",
"scripts": {
"build": "webpack --env dev",
"build-prod": "webpack --env prod",
"watch": "webpack --watch",
"serve": "webpack serve --env dev",
"test": "mochapack --webpack-config webpack.config.js --webpack-env.test test 'tests/**/*.ts'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bootstrap": "^5.1.3",
"@types/chai": "^4.2.15",
"@types/codemirror": "^0.0.108",
"@types/mocha": "^8.2.2",
"@types/moo": "^0.5.4",
"@types/nearley": "^2.11.1",
"@types/node": "^14.14.37",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/webpack": "^5.28.1",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chai": "^4.3.4",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"csstype": "^3.1.2",
"eslint": "^8.39.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^10.0.0",
"mochapack": "^2.1.4",
"nearley-loader": "^2.0.0",
"style-loader": "^2.0.0",
"svgo-loader": "^3.0.0",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.81.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.13.3",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@codewars/codemirror-riscv": "^0.0.1",
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@uiw/codemirror-themes-all": "^4.19.15",
"@uiw/react-codemirror": "^4.19.15",
"bootstrap": "^5.3.3",
"classnames": "^2.3.2",
"moo": "^0.5.1",
"nearley": "^2.20.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"tippy.js": "^6.3.7",
"ts-dedent": "^2.0.0"
}
}