-
-
Notifications
You must be signed in to change notification settings - Fork 472
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 5.6 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 5.6 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "one-army-community-platform",
"repository": {
"type": "git",
"url": "https://github.com/ONEARMY/community-platform.git"
},
"workspaces": ["shared", "packages/*"],
"private": true,
"main": "lib/index.js",
"type": "module",
"scripts": {
"start": "bun ./server.js",
"start-ci": "bun run build:shared && cross-env NODE_ENV=production bun ./server.js",
"start:themes": "bun run --filter oa-themes dev",
"start:components": "bun run --filter oa-components dev",
"start:shared": "bun run --filter oa-shared dev",
"start:prod": "bun run build:shared && bun run build:themes && bun run build:components && cross-env NODE_ENV=production && bun ./server.js",
"start:platform": "bun ./server.js",
"start:platform-ci": "cross-env NODE_ENV=production bun ./server.js",
"build:themes": "bun run --filter oa-themes build",
"build:components": "bun run --filter oa-components build",
"build:vite": "react-router build",
"build:shared": "bun run --filter oa-shared build",
"build": "bun run build:shared && bun run build:themes && bun run build:components && bun run build:vite && tsc",
"lint": "biome lint --write",
"format": "biome check --write",
"serve": "npx serve -s build",
"test": "bun run --filter oa-cypress start",
"test:components": "bun run build:shared && bun run build:themes && bun run build:components && bun run --filter oa-components test",
"test:unit": "bun run build:themes && bun run build:components && vitest",
"test:madge": "npx madge --circular --extensions ts,tsx ./ --exclude src/stores",
"storybook": "bun run --filter oa-components start",
"storybook:build": "bun run build:shared && bun run build:themes && bun run --filter oa-components build:sb",
"docs": "bun run --filter oa-docs start",
"db:reset": "npx supabase db reset && bun run db:seed",
"db:seed": "npx @snaplet/seed sync && npx tsx seed.ts > seed.sql",
"commit": "git-cz",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,json}": ["biome check --write --no-errors-on-unmatched"]
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all", "iOS >= 15", "safari >= 15"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"iOS >= 15"
]
},
"resolutions": {
"__note1__": "Pin react version consistently in all child workspaces",
"react": "19.2.1",
"react-dom": "19.2.1",
"@types/react": "19.2.7"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/base": "next",
"@react-email/components": "0.3.3",
"@react-router/fs-routes": "^7.13.1",
"@react-spring/web": "^10.0.3",
"@sentry/react": "10.40.0",
"@sentry/react-router": "^10.40.0",
"@supabase/ssr": "^0.7.0",
"@supabase/storage-js": "^2.76.1",
"@supabase/supabase-js": "^2.76.1",
"@theme-ui/components": "^0.17.4",
"@theme-ui/core": "^0.17.4",
"canvas-confetti": "^1.9.3",
"countries-list": "^3.2.2",
"country-to-iso": "^1.6.1",
"date-fns": "^4.1.0",
"debounce": "^3.0.0",
"final-form": "4.20.2",
"final-form-arrays": "^3.0.2",
"hono": "^4.12.7",
"isbot": "^5.1.13",
"jsonwebtoken": "^9.0.3",
"keyv": "^5.1.2",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.23",
"marked": "^17.0.1",
"mobx": "6.15.0",
"mobx-react": "9.2.1",
"oa-components": "workspace:*",
"oa-shared": "workspace:*",
"oa-themes": "workspace:*",
"react": "19.2.1",
"react-country-flag": "^3.1.0",
"react-dom": "19.2.1",
"react-final-form": "6.5.3",
"react-final-form-arrays": "^3.1.3",
"react-ga4": "^2.1.0",
"react-highlight-words": "^0.21.0",
"react-leaflet": "^5.0.0",
"react-leaflet-markercluster": "^5.0.0-rc.0",
"react-router": "^7.13.1",
"react-spring": "^10.0.3",
"react-tooltip": "^5.30.0",
"remix-utils": "^9.0.1",
"resend": "6.5.2",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"styled-system": "^5.1.5",
"theme-ui": "^0.17.2",
"tslog": "^4.10.2",
"use-debounce": "^10.1.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@faker-js/faker": "^10.1.0",
"@hono/node-server": "^1.19.11",
"@react-router/dev": "^7.13.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@snaplet/copycat": "^6.0.0",
"@snaplet/seed": "0.98.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.9",
"@types/canvas-confetti": "^1",
"@types/jsonwebtoken": "^9",
"@types/leaflet": "^1.9.21",
"@types/node": "^22.18.0",
"@types/pg": "^8.11.11",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-leaflet": "^1.1.6",
"@types/react-leaflet-markercluster": "^2.0.0",
"@types/styled-system": "^5.1.25",
"@vitejs/plugin-react": "^5.1.1",
"all-contributors-cli": "^6.20.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pg": "^8.13.3",
"supabase": "2.53.6",
"tsx": "^4.20.3",
"typescript": "^5.7.2",
"vite": "^7.1.12",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.5",
"workbox-window": "^7.4.0"
},
"dependenciesMeta": {
"cypress": {
"built": true
}
},
"engines": {
"bun": ">=1.3.10"
}
}