-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.96 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
{
"name": "@metaboost/web",
"version": "0.1.15",
"private": true,
"scripts": {
"i18n:compile": "node ../../scripts/i18n/compile.mjs web",
"prebuild": "npm run i18n:compile",
"build": "next build",
"predev": "npm run i18n:compile",
"dev": "NODE_OPTIONS='--no-deprecation' env PORT=${PORT:-4002} next dev --webpack",
"dev:sidecar": "env DOTENV_CONFIG_PATH=sidecar/.env WEB_SIDECAR_PORT=${WEB_SIDECAR_PORT:-4001} node -r dotenv/config sidecar/dist/server.js",
"dev:sidecar:watch": "concurrently -n tsc,sidecar \"npm run build:watch -w @metaboost/web-sidecar\" \"sleep 4 && npx nodemon --delay 2500ms --watch sidecar/dist --watch ../../packages/helpers/dist --exec 'env DOTENV_CONFIG_PATH=sidecar/.env WEB_SIDECAR_PORT=${WEB_SIDECAR_PORT:-4001} node -r dotenv/config sidecar/dist/server.js'\"",
"dev:watch": "NODE_OPTIONS='--no-deprecation' env PORT=${PORT:-4002} next dev --webpack",
"start": "next start",
"lint": "eslint ./src --max-warnings 0",
"lint:fix": "eslint ./src --fix",
"type-check": "next typegen && rm -rf .next/dev/types && tsc --noEmit",
"validate-env": "tsx --tsconfig tsconfig.scripts.json scripts/validate-env.ts",
"test:e2e": "playwright test",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@metaboost/helpers": "*",
"@metaboost/helpers-i18n": "*",
"@metaboost/helpers-requests": "*",
"@metaboost/ui": "*",
"@fortawesome/fontawesome-free": "^7.2.0",
"next": "^16.2.6",
"next-intl": "^4.11.2",
"react": "^19.2.5",
"react-dom": "^19.2.6",
"server-only": "^0.0.1"
},
"devDependencies": {
"metaboost-signing": "*",
"@next/bundle-analyzer": "^15.1.0",
"@playwright/test": "^1.49.0",
"@types/node": "^24.10.12",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.2",
"concurrently": "^9.2.1",
"dotenv": "^16.4.5",
"nodemon": "^3.1.10",
"sass": "^1.98.0",
"typescript": "^5.9.2",
"vitest": "^4.1.4"
}
}