forked from calliope-edu/ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"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": "vite build",
"dev": "vite",
"start": "vite dist --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "jest",
"prettier": "prettier --write src/."
},
"jest": {
"testMatch": [
"<rootDir>/**/__tests__/*.test.ts"
],
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setup_tests.ts",
"jest-expect-message"
]
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@smui/dialog": "^7.0.0-beta.3",
"@sveltejs/vite-plugin-svelte": "^2.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@tsconfig/svelte": "^4.0.1",
"@types/jest": "^29.5.1",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.16.0",
"@types/three": "^0.152.0",
"@types/web-bluetooth": "^0.0.17",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^29.5.0",
"eslint": "^8.43.0",
"eslint-plugin-svelte": "^2.32.1",
"eslint-plugin-svelte3": "^4.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-expect-message": "^1.1.3",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^5.0.3",
"svelte-windicss-preprocess": "^4.2.2",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-windicss": "^1.8.10"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.0.0",
"@sgratzl/chartjs-chart-boxplot": "^4.2.4",
"@tensorflow/tfjs": "^4.4.0",
"@types/w3c-web-usb": "^1.0.6",
"bowser": "^2.11.0",
"chart.js": "^4.2.1",
"chartjs-chart-pcp": "^4.1.1",
"dapjs": "^2.3.0",
"js-cookie": "^3.0.4",
"postcss": "^8.4.23",
"smoothie": "^1.36.1",
"svelte-skeleton": "^1.3.1",
"three": "^0.152.2",
"uuid4": "^2.0.3"
}
}