-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 3.29 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "genai-teachable-machine",
"version": "0.1.0",
"author": "Nicolas Pope <npope@uef.fi>",
"description": "Machine Learning tool for Children",
"homepage": "https://www.generation-ai-stn.fi",
"private": true,
"type": "module",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@knicos/genai-base": "^1.0.7",
"@knicos/tm-image": "^0.9.2",
"@knicos/tm-pose": "^0.9.2",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@tensorflow/tfjs": "3.21.0",
"file-saver": "^2.0.5",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"jszip": "^3.10.1",
"lz-string": "^1.5.0",
"peerjs": "^1.4.7",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"react-markdown": "^9.0.1",
"react-player": "^2.12.0",
"react-router-dom": "^6.9.0",
"recoil": "^0.7.7",
"smoothscroll-polyfill": "^0.4.4",
"web-vitals": "^2.1.0"
},
"scripts": {
"git-info": "node scripts/gitInfo.js",
"start": "vite",
"build": "npm run git-info && tsc && vite build",
"build:robot": "npm run git-info && tsc && vite build --mode robot",
"lint": "eslint --max-warnings=0 ./src/**/*.ts ./src/**/*.tsx",
"test": "vitest",
"ci:test": "vitest --coverage --reporter=junit --outputFile=junit.xml",
"coverage": "vitest run --coverage",
"clean": "rm -rf ./node_modules && rm -rf ./dist",
"preview": "vite preview"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020,
"ecmaFeatures": {
"jsx": true
}
},
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.5",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.0",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.0",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint-config-prettier": "^8.7.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.4",
"source-map-explorer": "^2.5.3",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vitest": "^0.34.6"
}
}