-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 7.51 KB
/
Copy pathpackage.json
File metadata and controls
178 lines (178 loc) · 7.51 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "run-remix-monorepo",
"version": "4.1.2",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@10.9.2",
"private": true,
"description": "RUN Remix — An AI-native digital manufacturing platform for sustainable B2B sportswear, built on React 19, Express 5, and Vite 8.",
"homepage": "https://github.com/RUN-APPAREL/RUN",
"repository": {
"type": "git",
"url": "https://github.com/RUN-APPAREL/RUN.git"
},
"bugs": {
"url": "https://github.com/RUN-APPAREL/RUN/issues"
},
"type": "module",
"workspaces": [
"client",
"server",
"shared",
"scripts"
],
"scripts": {
"dev:server": "PORT=5002 npm run --workspace=@run-remix/server dev",
"dev:client": "npm run --workspace=@run-remix/client dev",
"start": "PORT=5002 npm run --workspace=@run-remix/server start",
"build:client": "npm run build --workspace=@run-remix/client",
"build:server": "npm run build --workspace=@run-remix/server",
"migrate:deploy": "npm run --workspace=@run-remix/server db:migrate",
"db:push": "npm run --workspace=@run-remix/server db:push",
"db:seed": "tsx scripts/seed.ts",
"dev": "npm run dev:server",
"build": "turbo run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:ci": "vitest run --coverage --reporter=json --outputFile=test-results.json",
"test:e2e": "playwright test",
"test:e2e:visual": "playwright test --project=visual",
"test:e2e:a11y": "playwright test --project=a11y",
"test:e2e:stress": "playwright test --project=stress",
"test:e2e:cross-engine": "playwright test --project=cross-engine",
"test:integration": "vitest run tests/integration",
"lint": "biome check .",
"lint:html": "npm run --workspace=@run-remix/client lint:html",
"check": "npm run typecheck && npm run lint",
"check:apply": "biome check --write .",
"check:audit": "audit-ci --config .audit-ci.json",
"check:knip": "knip",
"check:bundle": "node scripts/check-bundle-size.mjs",
"check:links": "tsx scripts/verify-routes.ts",
"check:secrets": "./scripts/security/check-secrets.sh",
"check:docs": "find . -name '*.md' -not -path '*/node_modules/*' -not -path '*/.gemini/*' -not -path '*/.claude/*' -not -path '*/.agent/*' -not -path '*/.agents/*' -not -path '*/.code-review-graph/*' -not -path '*/.superpowers/*' -not -path '*/docs/superpowers/*' -not -path '*/docs/audit/*' -not -path '*/docs/archive/*' -not -path '*/test-results/*' -not -path '*/playwright-report/*' -not -path '*/dist/*' -not -name 'findings.md' -not -name 'task_plan.md' -not -name 'task.md' -print0 | xargs -0 markdown-link-check -c .markdown-link-check.json",
"check:md": "npx markdownlint-cli2 \"**/*.md\" \"#**/node_modules/**\" \"#!.gemini/**\" \"#!.agent/**\" \"#!.claude/**\" \"#!.agents/**\" \"#!.impeccable/**\" \"#!.code-review-graph/**\" \"#!.superpowers/**\" \"#!graphify-out/**\" \"#!docs/audit/**\" \"#!docs/superpowers/**\" \"#!docs/archive/**\" \"#!findings.md\" \"#!task_plan.md\" \"#!task.md\" \"#!playwright-report/**\" \"#!test-results/**\" \"#!SECURITY_REMEDIATION_PLAN.md\" \"#!ORIGINAL_REQUEST.md\" \"#!coverage/**\" \"#!dist/**\"",
"build:analyze": "npm run --workspace=@run-remix/client build:analyze",
"typecheck": "npm exec -w @run-remix/client -- react-router typegen && tsc --noEmit -p client/tsconfig.json && tsc --noEmit -p server/tsconfig.json",
"build:ssr": "npm run --workspace=@run-remix/server build:ssr",
"verify:ssr": "vitest run tests/unit/ssr/invariants.test.ts",
"verify:clean-seed": "tsx scripts/verify-clean-seed.ts",
"verify:egress": "tsx scripts/validators/verify-query-egress.ts",
"neon:snapshot": "tsx scripts/neon/pre-migration-snapshot.ts",
"verify:tech-integrity": "tsx scripts/verify-tech-integrity.ts",
"verify:docs-versions": "tsx scripts/utils/verify-docs-versions.ts",
"verify:docs-structure": "tsx scripts/validators/verify-docs-structure.ts",
"ci:checks": "npm run check:md && npm run verify:clean-seed && npm run verify:tech-integrity && npm run verify:docs-structure",
"verify:build": "npm run build && npm run check:bundle",
"verify-port": "node scripts/verify-port-5002.js",
"clean": "node scripts/clean-dev.mjs",
"kill:all": "node scripts/clean-dev.mjs",
"verify:workspaces": "tsx scripts/validators/verify-workspace-scripts.ts",
"lhci": "lhci autorun",
"verify:connect": "npm run verify-port && tsx scripts/verify-neon.ts && tsx scripts/verify-email.ts",
"prepare": "husky"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@biomejs/biome": "2.5.2",
"@hookform/resolvers": "^5.2.2",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.3",
"@types/node": "^24.10.0",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.0.6",
"audit-ci": "^7.1.0",
"cheerio": "^1.1.2",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"knip": "^5.75.2",
"playwright-core": "^1.59.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"supertest": "^7.0.0",
"ts-morph": "^28.0.0",
"turbo": "^2.9.14",
"typescript": "^6.0.3",
"vitest": "^4.0.6",
"vitest-axe": "^0.1.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.0",
"@gltf-transform/core": "^4.2.1",
"@gltf-transform/extensions": "^4.2.1",
"@gltf-transform/functions": "^4.2.1",
"@google-cloud/bigquery": "^8.1.1",
"@google-cloud/secret-manager": "^6.1.1",
"@google-cloud/storage": "^7.21.0",
"@google-cloud/tasks": "^6.2.3",
"@neondatabase/serverless": "^1.0.2",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.79.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.221.0",
"@opentelemetry/instrumentation-pino": "^0.40.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-node": "^0.221.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@react-router/express": "^8.3.0",
"@react-router/node": "^8.3.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.2",
"express-static-gzip": "^3.0.1",
"ffprobe-static": "^3.1.0",
"google-auth-library": "^10.6.2",
"helmet": "^8.1.0",
"isomorphic-dompurify": "^3.7.1",
"lru-cache": "^11.2.2",
"multer": "^2.1.0",
"neverthrow": "^8.1.1",
"nodemailer": "^9.0.1",
"opossum": "^9.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"prom-client": "^15.1.3",
"react-router": "^8.0.0",
"sharp": "0.35.3",
"ws": "^8.18.0",
"yargs": "^18.0.0",
"zod": "^4.4.3",
"zod-express-middleware": "^1.4.0"
},
"overrides": {
"sharp": "0.35.3",
"ndarray-pixels": {
"sharp": "0.35.3"
},
"brace-expansion": "^5.0.7",
"qs": "^6.16.0",
"teeny-request": "^10.1.3",
"vite": "^8.1.3",
"lodash": "^4.17.21",
"axios": "^1.13.5",
"react-helmet-async": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"fast-xml-parser": "^5.3.4",
"esbuild": "^0.25.0",
"uuid": "14.0.0",
"fast-uri": "^3.1.2",
"@tootallnate/once": "^3.0.1",
"undici": "^7.28.0"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.2"
}
}