feat(project): init

This commit is contained in:
zhangheng
2026-04-25 11:26:33 +08:00
commit 9bf212f67c
63 changed files with 11141 additions and 0 deletions

49
package.json Normal file
View File

@@ -0,0 +1,49 @@
{
"name": "image-prompt-studio",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node scripts/start-standalone.mjs",
"dc": "docker compose",
"admin:reset": "node scripts/reset-admin.mjs",
"test": "tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit",
"eslint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.9.0",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"server-only": "^0.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.2.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.5.0",
"prettier": "^3.6.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"trustedDependencies": [
"better-sqlite3"
]
}