-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.74 KB
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
{
"name": "thumbnailer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bash scripts/dev-local-stack.sh",
"dev:frontend-only": "node node_modules/next/dist/bin/next dev --turbopack",
"build": "node node_modules/next/dist/bin/next build",
"start": "node node_modules/next/dist/bin/next start",
"lint": "eslint",
"pages:setup": "npx @cloudflare/next-on-pages@latest --setup",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:dev": "wrangler pages dev .vercel/output/static --functions .vercel/output/functions",
"dev:local": "bash scripts/dev-local-stack.sh",
"test:full-stack": "node scripts/test-full-stack.js",
"test:perf": "node scripts/test-full-stack.js --perf-only",
"test:check": "bash scripts/test-with-check.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:prod": "PLAYWRIGHT_BASE_URL=https://creatortoolhub.com playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@fal-ai/client": "^1.7.2",
"@google/genai": "^1.17.0",
"autumn-js": "^0.1.33",
"class-variance-authority": "^0.7.1",
"fabric": "^7.1.0",
"next": "15.5.2",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.16",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"vercel": "^47.0.4"
}
}