forked from microbit-foundation/cctd-ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.44 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
{
"name": "ml-machine",
"version": "1.0.0",
"author": "Center for Computational Thinking and Design at Aarhus University",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"build": "node prepEnv.js simple && vite build",
"dev": "node prepEnv.js unbranded && vite",
"devML": "node prepEnv.js branded && vite",
"devSimple": "node prepEnv.js simple && vite",
"start": "vite dist --host",
"check": "svelte-check --fail-on-warnings --tsconfig ./tsconfig.json --compiler-warnings 'a11y-aria-attributes:ignore,a11y-click-events-have-key-events:ignore,a11y-media-has-caption:ignore,a11y-structure:ignore,a11y-role-supports-aria-props:ignore,a11y-role-has-required-aria-props:ignore,a11y-media-has-caption:ignore,a11y-no-static-element-interactions:ignore,a11y-no-noninteractive-element-interactions:ignore,a11y-missing-content:ignore'",
"test": "vitest",
"prettier": "prettier --write src/.",
"checkFormat": "prettier --check src/."
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@testing-library/svelte": "^4.1.0",
"@tsconfig/svelte": "^5.0.4",
"@types/browser-lang": "^0.1.1",
"@types/d3": "^7.4.1",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.16.0",
"@types/three": "^0.152.0",
"@types/w3c-web-usb": "^1.0.6",
"@types/web-bluetooth": "^0.0.17",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.43.0",
"eslint-plugin-svelte": "^2.32.1",
"jsdom": "^23.0.1",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.14",
"svelte-check": "^3.6.9",
"svelte-preprocess": "^5.1.3",
"svelte-windicss-preprocess": "^4.2.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-windicss": "^1.9.3",
"vitest": "^1.5.0"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.1.2",
"@tensorflow-models/knn-classifier": "^1.2.6",
"@tensorflow/tfjs": "^4.18.0",
"arrows-svg": "^1.8.0",
"bowser": "^2.11.0",
"browser-lang": "^0.2.1",
"chart.js": "^4.4.2",
"d3": "^7.9.0",
"d3-3d": "^1.0.0",
"dapjs": "^2.3.0",
"js-cookie": "^3.0.5",
"postcss": "^8.4.38",
"smoothie": "^1.36.1",
"svelte-i18n": "^4.0.0",
"svelte-skeleton": "^1.3.1",
"three": "^0.152.2",
"uuid4": "^2.0.3"
}
}