-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.4 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.4 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
110
{
"name": "@code-dot-org/ml-activities",
"version": "0.1.1",
"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"
},
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"scripts": {
"build": "webpack -p",
"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"
},
"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": {
"@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",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"babelify": "^10.0.0",
"canvas": "^2.8.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": ">=4.18.2",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^4.2.0",
"idempotent-babel-polyfill": "6.26.0-1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jquery": "1.12.1",
"lodash": "^4.17.5",
"mem": ">=4.0.0",
"node-fetch": "^2.6.0",
"prettier": "1.16.1",
"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": "^1.0.0",
"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",
"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"
]
}