-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 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
{
"name": "formmate-ai",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node scripts/dev-stack.mjs",
"dev:vite": "vite dev --configLoader native",
"dev:vercel": "vercel dev --listen 3000",
"dev:api-local": "tsx scripts/dev-api-server.ts",
"dev:stack": "node scripts/dev-stack.mjs",
"build": "node scripts/check-required-env.mjs && vite build --configLoader native",
"preview": "vite preview --configLoader native",
"env:pull": "vercel env pull .env.local --yes",
"typecheck": "tsc --noEmit",
"test": "npm run test:chat-contract && npm run test:parser-fixtures",
"test:chat-contract": "tsx tests/chat-contract.ts",
"test:parser-fixtures": "tsx tests/parser-fixtures.ts",
"test:e2e": "playwright test",
"test:storage": "npx tsx test-local-store.ts"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"autoprefixer": "^10.5.0",
"cross-env": "^10.1.0",
"jsdom": "^28.1.0",
"postcss": "^8.5.9",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vercel": "^50.31.1",
"vite": "^6.2.0"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@material-symbols/font-400": "^0.44.1",
"canvas-confetti": "^1.9.4",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"markdown-it": "^14.1.1",
"ogl": "^1.0.11",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sortablejs": "^1.15.7"
}
}