forked from ronibhakta1/Calxsecure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "calxsecure",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:build": "docker compose build",
"docker:migrate": "docker compose run --rm migrate",
"docker:health": "docker compose ps && curl -s http://localhost:3001 || echo 'Apps not ready'"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/pg": "^8.16.0",
"eslint-config-turbo": "^2.6.0",
"eslint-plugin-turbo": "^2.6.0",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@repo/store": "^1.0.0",
"clsx": "^2.1.1",
"esbuild": "0.25.10",
"firebase": "^12.5.0",
"lucide-react": "^0.543.0",
"python-shell": "^5.0.0",
"tailwind-merge": "^3.3.1",
"webpack": "^5.101.3"
}
}