forked from microbit-foundation/cctd-ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.88 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
{
"name": "ml-trainer",
"version": "0.7.0-local",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc && cross-env VITE_VERSION=$npm_package_version vite build",
"ci": "npm run test && npm run lint && npm run build && npx prettier --check src",
"deploy": "website-deploy-aws",
"dev": "cross-env VITE_VERSION=$npm_package_version vite",
"invalidate": "invalidate-cloudfront-distribution",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"postinstall": "npm run theme",
"preview": "vite preview",
"start": "vite dev",
"test": "vitest",
"test:e2e": "playwright test --headed",
"test:e2e:headless": "playwright test",
"theme:watch": "chakra-cli tokens src/deployment/default/theme.ts --watch",
"theme": "chakra-cli tokens src/deployment/default/theme.ts",
"i18n:compile": "node bin/tidy-lang.cjs && formatjs compile-folder --ast lang src/messages"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@formatjs/cli": "^6.2.7",
"@playwright/test": "^1.42.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/d3": "^7.4.1",
"@types/ejs": "^3.1.5",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.upperfirst": "^4.3.9",
"@types/node": "^18.16.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"ejs": "^3.1.9",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^24.0.0",
"playwright": "^1.42.1",
"prettier": "2.8.8",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.3.1",
"vitest-dom": "^0.1.1"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@microbit/makecode-embed": "^0.0.0-alpha.7",
"@microbit/microbit-connection": "^0.0.0-alpha.25",
"@microbit/ml-header-generator": "^0.4.3",
"@tensorflow/tfjs": "^4.20.0",
"@types/w3c-web-serial": "^1.0.6",
"@types/w3c-web-usb": "^1.0.6",
"@vitejs/plugin-react": "^4.3.1",
"bowser": "^2.11.0",
"chart.js": "^4.2.1",
"framer-motion": "^10.2.4",
"lodash.camelcase": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"ml4f": "git://github.com/microsoft/ml4f#v1.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-intl": "^6.6.8",
"react-router": "^6.24.0",
"react-router-dom": "^6.24.0",
"smoothie": "^1.36.1",
"zustand": "^4.5.5"
}
}