-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "dogai",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"lint:css": "stylelint '**/*.css'",
"lint": "biome lint src/*",
"format": "biome format --write src/*",
"upgrade": "taze"
},
"dependencies": {
"@teachablemachine/image": "^0.8.5",
"@tensorflow/tfjs": "^1.3.1",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-router-dom": "^7.1.1",
"vite-plugin-pwa": "^0.21.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.0",
"@vitejs/plugin-react": "^4.3.4",
"globals": "^15.14.0",
"happy-dom": "^16.6.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"taze": "^18.2.0",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}