-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.11 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.11 KB
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
{
"name": "@code-dot-org/ml-activities",
"version": "0.1.3",
"description": "",
"main": "dist/main.js",
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
".+\\.(bin|jpg|jpeg|png|mp3|ogg|wav|gif|svg|css)$": "identity-obj-proxy",
"^@ml(.*)$": "<rootDir>/src/$1",
"^@public(.*)$": "<rootDir>/public/$1"
},
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"globals": {
"window": {},
"location": {}
}
},
"scripts": {
"build": "webpack --mode production",
"start": "yarn run dev",
"dev": "webpack-dev-server --mode development --static public --host 0.0.0.0",
"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"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/code-dot-org/ml-activities.git"
},
"author": "",
"license": "Apache-2.0",
"peerDependencies": {
"lodash": "^4.17.5",
"radium": "^0.25.2",
"react": "~16.14.0",
"react-dom": "~16.14.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.0",
"@code-dot-org/redactable-markdown": "^0.4.0",
"@code-dot-org/svm": "^0.1.1",
"@tensorflow-models/knn-classifier": "~1.1.0",
"@tensorflow-models/mobilenet": "^2.0.4",
"@tensorflow/tfjs": "^1.3.1",
"assert": "^2.1.0",
"babel-loader": "^8.3.0",
"babel-plugin-add-module-exports": "^0.2.1",
"canvas": "^2.8.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.37.5",
"idempotent-babel-polyfill": "6.26.0-1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jquery": "1.12.1",
"lodash": "^4.17.5",
"mem": ">=4.0.0",
"node-fetch": "^2.6.0",
"prettier": "1.16.1",
"process": "^0.11.10",
"query-string": "4.1.0",
"radium": "^0.25.2",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-test-renderer": "~16.14.0",
"rehype-react": "^4.0.1",
"remark-parse": "^7.0.2",
"remark-rehype": "^5.0.0",
"sinon": "^7.5.0",
"style-loader": "^2.0.0",
"util": "^0.12.5",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"yargs": "^14.0.0"
},
"bugs": {
"url": "https://github.com/code-dot-org/ml-activities/issues"
},
"homepage": "https://github.com/code-dot-org/ml-activities#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"messageformat": "2.3.0",
"react-typist": "^2.0.5"
},
"files": [
"dist/**/!(oceans.js)",
"i18n/oceans.json"
]
}