-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.41 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "a-eye",
"version": "0.1.0",
"homepage": "https://a-eye.sandboxnu.com",
"license": "AGPL-3.0-only",
"repository": "sandboxnu/a-eye",
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/styles": "4.11.3",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/jest": "26.0.13",
"@types/node": "14.14.10",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@visx/axis": "^1.7.0",
"@visx/event": "1.7.0",
"@visx/gradient": "1.7.0",
"@visx/grid": "^1.7.0",
"@visx/group": "1.7.0",
"@visx/mock-data": "1.7.0",
"@visx/scale": "1.7.0",
"@visx/shape": "1.8.0",
"@visx/voronoi": "1.7.0",
"autoprefixer": "10.0.2",
"chart.js": "2.9.4",
"chartjs-plugin-dragdata": "1.1.3",
"csstype": "3.0.6",
"distance-to-line-segment": "0.2.0",
"filter": "0.1.1",
"flowpoints": "1.0.18",
"gaussian-convolution-kernel": "1.0.0",
"hog-features": "1.0.0",
"image-js": "0.31.4",
"jimp": "0.16.1",
"jsxgraph": "1.2.1",
"mathjs": "^9.3.0",
"ml-dataset-iris": "1.1.1",
"ml-distance-euclidean": "2.0.0",
"ml-kmeans": "5.0.0",
"ml-pca": "4.0.1",
"node-forge": "0.10.0",
"pixelmatch": "5.2.1",
"postcss": "8.1.3",
"postcss-cli": "7.1.2",
"python-bridge": "1.1.0",
"randomcolor": "0.6.2",
"react": "16.13.1",
"react-chartjs-2": "2.10.0",
"react-dom": "16.13.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"serialize-javascript": "4.0.0",
"tailwind": "4.0.0",
"tailwindcss": "1.9.6",
"tailwindcss-blend-mode": "1.0.0",
"typeface-open-sans": "0.0.75",
"typeface-roboto": "0.0.75",
"typeface-roboto-mono": "0.0.75",
"typefaces": "0.0.1"
},
"devDependencies": {
"@testing-library/dom": "5.6.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/jest": "26.0.13",
"@types/node": "14.14.10",
"@types/randomcolor": "0.5.5",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.7",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"@visx/tooltip": "^1.7.2",
"eslint": "7.19.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"postcss": "8.1.13",
"postcss-cli": "7.1.2",
"prettier": "2.2.1",
"react-scripts": "4.0.1",
"typescript": "4.0.2"
},
"scripts": {
"start": "npm run watch:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --fix",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"typeRoots": [
"./ml-kmeans.d.ts"
]
}
}