-
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.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 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": "phx",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev:web": "turbo dev --filter=@workspace/web",
"dev:app": "turbo dev --filter=@workspace/app",
"dev:backend": "turbo dev --filter=@workspace/backend",
"start:web": "turbo start --filter=@workspace/web",
"start:app": "turbo start --filter=@workspace/app",
"stripe:listen": "stripe listen --forward-to https://third-cod-536.convex.site/stripe",
"stripe:trigger": "stripe trigger payment_intent.succeeded"
},
"packageManager": "pnpm@9.15.9+sha256.cf86a7ad764406395d4286a6d09d730711720acc6d93e9dce9ac7ac4dc4a28a7",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@types/node": "^20.17.25",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"convex-panel": "^0.2.14",
"prettier": "^3.5.1",
"turbo": "^2.4.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.14.4"
},
"dependencies": {
"@auth/core": "0.37.0",
"@convex-dev/auth": "^0.0.80",
"@tabler/icons-react": "^3.31.0",
"chrono-node": "^2.7.9",
"convex": "^1.21.0",
"lucide-react": "^0.483.0",
"motion": "^12.5.0",
"nanoid": "^5.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stripe": "^17.7.0"
}
}