forked from NiladriHazra/Open-Fiesta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.19 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.19 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
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
{
"name": "ai_fiesta",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:integration": "./__tests__/integration/run-tests.sh",
"test:integration:docker": "RUN_DOCKER_TESTS=true ./__tests__/integration/run-tests.sh",
"test:e2e": "RUN_INTEGRATION_TESTS=true jest __tests__/integration/sharing-e2e.test.tsx",
"test:visual": "RUN_INTEGRATION_TESTS=true jest __tests__/integration/visual-consistency.test.ts",
"unimported": "unimported",
"docker:build": "docker build -t ai_fiesta .",
"docker:run": "docker run -p 3000:3000 ai_fiesta",
"docker:dev": "./scripts/docker-deploy.sh dev",
"docker:prod": "./scripts/docker-deploy.sh prod",
"docker:test": "./scripts/docker-deploy.sh test",
"docker:clean": "./scripts/docker-deploy.sh clean",
"docker:status": "./scripts/docker-deploy.sh status",
"docker:logs": "./scripts/docker-deploy.sh logs",
"prod:setup": "./scripts/setup-production-env.sh",
"prod:deploy": "./scripts/production-deploy.sh deploy",
"prod:status": "./scripts/production-deploy.sh status",
"prod:logs": "./scripts/production-deploy.sh logs",
"prod:rollback": "./scripts/production-deploy.sh rollback",
"prod:test": "./scripts/production-deploy.sh test"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.56.0",
"@tailwindcss/typography": "^0.5.16",
"@types/crypto-js": "^4.2.2",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"framer-motion": "^12.23.12",
"gsap": "^3.13.0",
"lightningcss": "^1.30.1",
"lucide-react": "^0.539.0",
"mammoth": "^1.10.0",
"next": "15.4.6",
"next-pwa": "^5.6.0",
"pdf-parse": "^1.1.1",
"prismjs": "^1.30.0",
"react": "^19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.18",
"react-speech-recognition": "^4.0.1",
"react-toastify": "^11.0.5",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"styled-components": "^6.1.19",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-speech-recognition": "^3.9.6",
"@types/styled-components": "^5.1.34",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"ts-jest": "^29.4.1",
"tw-animate-css": "^1.3.7",
"typescript": "^5",
"unimported": "^1.31.0"
}
}