-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.59 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
{
"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/jquery": "^3.5.5",
"@types/mocha": "^8.2.2",
"@types/moo": "^0.5.4",
"@types/nearley": "^2.11.1",
"@types/node": "^14.14.37",
"@types/toastr": "^2.1.38",
"@types/webpack-env": "^1.16.3",
"chai": "^4.3.4",
"css-loader": "^5.2.1",
"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": "^4.2.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bootstrap": "^5.1.3",
"codemirror": "^5.60.0",
"jquery": "^3.6.0",
"moo": "^0.5.1",
"nearley": "^2.20.1",
"tippy.js": "^6.3.7",
"toastr": "^2.1.4",
"ts-dedent": "^2.0.0"
}
}