-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "glassbox",
"version": "0.1.0",
"description": "Portfolio optimization and beta hedging tool with Glass UI design",
"private": true,
"packageManager": "pnpm@9.2.0",
"engines": {
"node": ">=18.17.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "turbo run dev",
"web": "pnpm --filter @glassbox/web run dev",
"be": "pnpm --filter @glassbox/backend run dev",
"build": "turbo run build",
"build:web": "pnpm --filter @glassbox/web run build",
"build:backend": "pnpm --filter @glassbox/backend run build",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"type-check": "turbo run type-check",
"generate:i18n": "tsx translation/csv-parser.ts",
"text": "tsx translation/csv-parser.ts"
},
"devDependencies": {
"csv-parser": "^3.2.0",
"prettier": "^3.4.2",
"tsx": "^4.21.0",
"turbo": "^2.3.3",
"typescript": "^5.6.2"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"i18next": "^25.8.0",
"react-i18next": "^16.5.4"
}
}