-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"private": "true",
"homepage": "http://mbwatson.github.io/graph-zero-forcing",
"scripts": {
"start": "SERVE=true webpack serve",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack",
"build-dev": "webpack",
"lint": "eslint ./src/index.js ./src/components/**/*.js",
"lint:fix": "eslint --fix ./src/index.js ./src/components/**/*.js",
"clean": "rm -rf dist",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.29.4",
"eslint-webpack-plugin": "^3.1.1",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.0",
"postcss-preset-env": "^7.4.3",
"react-refresh": "^0.12.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@loadable/component": "^5.15.2",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.84",
"@mui/material": "^5.8.1",
"dotenv-webpack": "^7.1.0",
"mathjs": "^10.6.0",
"ml-matrix": "^6.10.0",
"react": "^18.0.0",
"react-colorful": "^5.5.1",
"react-dom": "^18.0.0",
"react-force-graph-2d": "^1.23.10",
"react-ga4": "^1.4.1",
"react-resize-detector": "^7.1.1",
"sass": "^1.50.1",
"sass-loader": "^12.6.0"
}
}