-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
{
"name": "@code-dot-org/ml-playground",
"version": "0.0.47",
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/code-dot-org/ml-playground.git"
},
"jest": {
"moduleNameMapper": {
".+\\.(bin|jpg|jpeg|png|mp3|ogg|wav|gif)$": "identity-obj-proxy",
"^@public(.*)$": "<rootDir>/public/$1"
}
},
"author": "",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.15",
"npm": ">=3.10.8"
},
"scripts": {
"build": "webpack --mode production",
"start": "yarn run dev",
"dev": "webpack-dev-server --mode development --content-base public --host 0.0.0.0 --disable-host-check",
"lint": "eslint --ext .js,.jsx src",
"test": "yarn run lint && jest",
"test:unit": "jest ./test/unit/*.js",
"preversion": "yarn install && yarn run test",
"version": "yarn run build",
"postversion": "git push && git push --tags && yarn publish"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-classes": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babelify": "^10.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3",
"eslint": "6.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "7.14.3",
"file-loader": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"messageformat": "2.3.0",
"ml-knn": "^3.0.0",
"query-string": "4.1.0",
"react": "~15.4.0",
"react-dom": "~15.4.0",
"react-papaparse": "^3.8.0",
"react-redux": "^5.0.0",
"redux": "^4.0.5",
"url-loader": "^2.2.0",
"webpack": "4.19.1",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.1.4",
"yarn": "^1.22.10"
},
"files": [
"dist/**/!(mainDev.js)",
"i18n/mlPlayground.json",
"public/datasets/*.json",
"public/*.json"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"chart.js": "^2.9.4",
"react-chartjs-2": "^2.11.1",
"reselect": "^4.0.0"
}
}