-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.07 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.07 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "promisetracker",
"version": "2.0.0",
"description": "PromiseTracker V2 App",
"license": "MIT",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=\"--no-deprecation --max-old-space-size=8000\" next build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
"generate:ai-model-ids": "node scripts/generate-ai-provider-model-ids.mjs",
"generate:all": "pnpm run generate:importmap && pnpm run generate:types",
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"test": "pnpm run test:int && pnpm run test:e2e",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --no-experimental-strip-types\" pnpm exec playwright test",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts",
"clean": "rm -rf .next node_modules",
"generate:airtable": "airtable-ts-codegen --apiKey $AIRTABLE_API_KEY --baseId $AIRTABLE_BASE_ID --output ./src/airtable.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.46",
"@ai-sdk/cerebras": "^2.0.34",
"@ai-sdk/cohere": "^3.0.21",
"@ai-sdk/deepinfra": "^2.0.34",
"@ai-sdk/deepseek": "^2.0.20",
"@ai-sdk/fireworks": "^2.0.34",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/groq": "^3.0.24",
"@ai-sdk/mistral": "^3.0.20",
"@ai-sdk/openai": "^3.0.30",
"@ai-sdk/openai-compatible": "^2.0.30",
"@ai-sdk/perplexity": "^3.0.19",
"@ai-sdk/togetherai": "^2.0.33",
"@ai-sdk/xai": "^3.0.57",
"@ax-llm/ax": "^14.0.16",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@innovixx/payload-color-picker-field": "^2.0.2",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/material-nextjs": "^7.3.2",
"@mui/utils": "^7.3.2",
"@next/third-parties": "^15.5.3",
"@payloadcms/db-mongodb": "3.77.0",
"@payloadcms/email-nodemailer": "3.77.0",
"@payloadcms/next": "3.77.0",
"@payloadcms/payload-cloud": "3.77.0",
"@payloadcms/plugin-cloud-storage": "3.77.0",
"@payloadcms/plugin-multi-tenant": "3.77.0",
"@payloadcms/plugin-sentry": "3.77.0",
"@payloadcms/plugin-seo": "3.77.0",
"@payloadcms/richtext-lexical": "3.77.0",
"@payloadcms/storage-s3": "3.77.0",
"@payloadcms/translations": "3.77.0",
"@payloadcms/ui": "3.77.0",
"@sentry/nextjs": "^10.6.0",
"@svgr/webpack": "^8.1.0",
"ai": "^6.0.97",
"airtable": "^0.12.2",
"airtable-ts": "^1.6.0",
"airtable-ts-formula": "^1.0.0",
"busboy": "1.6.0",
"cross-env": "^10.0.0",
"date-fns": "^4.1.0",
"dotenv": "17.2.1",
"graphql": "^16.11.0",
"lucide-react": "^0.542.0",
"next": "15.5.14",
"payload": "3.77.0",
"react": "19.1.3",
"react-dom": "19.1.3",
"react-share": "^5.2.2",
"require-in-the-middle": "^7.5.2",
"sharp": "0.34.3",
"tiktoken": "^1.0.22",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@playwright/test": "1.55.0",
"@testing-library/react": "16.3.0",
"@types/busboy": "^1.5.4",
"@types/node": "^24.3.0",
"@types/react": "19.1.11",
"@types/react-dom": "19.1.8",
"@vitejs/plugin-react": "5.0.1",
"airtable-ts-codegen": "^2.1.0",
"eslint": "^9.34.0",
"eslint-config-next": "15.4.6",
"jsdom": "26.1.0",
"playwright": "1.55.1",
"playwright-core": "1.55.0",
"prettier": "^3.6.2",
"typescript": "5.9.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"engines": {
"node": "^18.20.2 || >=20.9.0",
"pnpm": "^9 || ^10"
},
"pnpm": {
"onlyBuiltDependencies": [
"@sentry/cli",
"esbuild",
"sharp",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.33.0"
}