-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.73 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
{
"name": "@contractor-platform/monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/web",
"mobile",
"shared/types",
"shared/utils"
],
"packageManager": "yarn@4.10.3",
"scripts": {
"dev": "yarn workspace @contractor-platform/web dev",
"dev:mobile": "yarn workspace @contractor-platform/mobile dev",
"dev:mobile:ios": "yarn workspace @contractor-platform/mobile ios",
"dev:mobile:android": "yarn workspace @contractor-platform/mobile android",
"build": "yarn workspaces foreach -A run build",
"build:web": "yarn workspace @contractor-platform/web build",
"build:mobile": "yarn workspace @contractor-platform/mobile build",
"start": "yarn workspace @contractor-platform/web start",
"lint": "yarn workspaces foreach -A run lint",
"lint:fix": "yarn workspaces foreach -A run lint --fix",
"type-check": "yarn workspaces foreach -A run type-check",
"type-check:web": "yarn workspace @contractor-platform/web type-check",
"type-check:mobile": "yarn workspace @contractor-platform/mobile type-check",
"clean": "yarn workspaces foreach -A run clean",
"clean:all": "yarn workspaces foreach -A run clean && rm -rf node_modules",
"test": "yarn workspaces foreach -A run test",
"test:web": "yarn workspace @contractor-platform/web test",
"test:mobile": "yarn workspace @contractor-platform/mobile test",
"workspace:list": "yarn workspaces list",
"workspace:info": "yarn workspaces list --verbose",
"deps:update": "yarn up \"*\"",
"deps:dedupe": "yarn dedupe"
},
"dependencies": {
"@contractor-platform/types": "*",
"@fullcalendar/core": "^6.1.19",
"@fullcalendar/daygrid": "^6.1.0",
"@fullcalendar/interaction": "^6.1.0",
"@fullcalendar/react": "^6.1.0",
"@fullcalendar/timegrid": "^6.1.0",
"@stripe/stripe-js": "^7.9.0",
"@supabase/supabase-js": "^2.39.0",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns-tz": "^3.2.0",
"lucide-react": "^0.344.0",
"next": "^14.2.32",
"pdfjs-dist": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.5.0",
"react-grid-layout": "^1.5.2",
"react-pdf": "^10.1.0",
"replicate": "^1.1.0",
"serpapi": "^2.2.1",
"stripe": "^18.5.0",
"tailwind-merge": "^2.2.0",
"wavesurfer.js": "^7.7.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.0.0",
"eslint-config-next": "15.5.0",
"postcss": "^8.4.32",
"supabase": "2.45.5",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0"
}
}