Files
Pien-Studio/apps/web/package.json
T

43 lines
1.2 KiB
JSON
Raw Normal View History

2026-05-10 03:06:54 +07:00
{
"name": "@pien-studio/web",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --webpack -p 3000",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
2026-05-10 12:11:58 +07:00
"dependencies": {
2026-05-10 03:06:54 +07:00
"@mediapipe/face_detection": "~0.4.0",
"@pien-studio/editor-core": "workspace:*",
"@pien-studio/storage": "workspace:*",
"@pien-studio/types": "workspace:*",
"@radix-ui/react-select": "^2.2.6",
2026-05-10 12:11:58 +07:00
"@tailwindcss/postcss": "^4.1.13",
2026-05-10 03:06:54 +07:00
"@tensorflow-models/face-detection": "^1.0.3",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-cpu": "^4.22.0",
"@tensorflow/tfjs-backend-webgl": "^4.22.0",
"@tensorflow/tfjs-converter": "^4.22.0",
"@tensorflow/tfjs-core": "^4.22.0",
"@vladmandic/face-api": "^1.7.15",
"class-variance-authority": "^0.7.1",
"lucide-react": "^1.14.0",
"next": "^16.2.4",
"next-intl": "^4.11.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.2.4",
2026-05-10 12:11:58 +07:00
"autoprefixer": "^10.4.21",
2026-05-10 03:06:54 +07:00
"zustand": "^5.0.13"
2026-05-10 12:11:58 +07:00
},
"devDependencies": {
"fake-indexeddb": "^6.2.5",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2"
2026-05-10 03:06:54 +07:00
}
}