-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 947 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 947 Bytes
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
{
"name": "@captigo-examples/react-contact-server",
"version": "0.0.0",
"private": true,
"description": "Example: React contact form + Express server verifying Turnstile",
"type": "module",
"scripts": {
"dev": "concurrently -k \"pnpm dev:api\" \"pnpm dev:ui\"",
"dev:api": "node --import tsx/esm server.ts",
"dev:ui": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@captigo/core": "workspace:*",
"@captigo/react": "workspace:*",
"@captigo/turnstile": "workspace:*",
"cors": "^2.8.5",
"express": "^4.21.0",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.1.0",
"tsx": "^4.7.0",
"typescript": "^5.7.3",
"vite": "^6.0.0"
}
}