-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 867 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 867 Bytes
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
{
"name": "compilingtheory",
"version": "0.0.1",
"main": "web_src/main.js",
"repository": "https://github.com/secret344/compilingTheory.git",
"license": "MIT",
"scripts": {
"serve": "webpack server --progress --config webpack_setup/webpack.config.js",
"build": "webpack --progress --config webpack_setup/webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@vue/compiler-sfc": "^3.2.21",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"vue-loader": "^16.8.3",
"vue-style-loader": "^4.1.3",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"d3-graphviz": "^4.0.0"
}
}