-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.34 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "app",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16.16.0",
"npm": "8.11.0"
},
"homepage": "/AlgoLens/#",
"proxy": "http://localhost:3000",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@react-three/drei": "^9.106.0",
"@react-three/fiber": "^8.16.7",
"autosuggest-highlight": "^3.1.1",
"bootstrap": "^5.0.2",
"chart.js": "^4.4.3",
"cross-env": "^7.0.3",
"js-sorted-set": "^0.7.0",
"material-ui-image": "^3.3.1",
"mathjs": "^13.0.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-window": "^1.8.10",
"reactstrap": "^8.9.0",
"serve": "^14.2.0",
"styled-components": "^6.1.11",
"three": "^0.165.0",
"worker-loader": "^3.0.8"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"serve": "serve -s build -l 3000"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"customize-cra": "^1.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"gh-pages": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"react-app-rewired": "^2.2.1"
},
"overrides": {
"autoprefixer": "10.4.5"
}
}