This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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": "geometry-processing",
"version": "1.0.0",
"description": "CENG 789 - Digital Geometry Processing - Assignments",
"author": "Cansin Yildiz <cansinyildiz@gmail.com>",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@tyriar/fibonacci-heap": "^2.0.9",
"autobind-decorator": "^2.4.0",
"fastpriorityqueue": "^0.6.3",
"mathjs": "^7.0.0",
"ml-matrix": "^6.5.0",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recharts": "^1.8.5",
"three": "^0.116.1",
"three.meshline": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3",
"html-webpack-template": "^6.2.0",
"less": "^3.11.1",
"less-loader": "^6.1.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack",
"deploy": "gh-pages -d build",
"lint": "eslint ."
}
}