-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.73 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
{
"name": "share-network-platform",
"version": "1.0.0",
"description": "Network Telemetry & ISP Management Platform - Full-stack infrastructure monitoring solution",
"private": true,
"workspaces": [
"src/backend",
"src/frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"test": "npm run test --workspaces --if-present",
"test:backend": "npm run test --workspace=backend",
"test:frontend": "npm run test --workspace=frontend",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"prisma:generate": "npm run prisma:generate --workspace=backend",
"prisma:migrate": "npm run prisma:migrate --workspace=backend",
"prisma:studio": "npm run prisma:studio --workspace=backend",
"db:seed": "npm run seed --workspace=backend",
"clean": "rm -rf node_modules src/backend/node_modules src/frontend/node_modules src/backend/dist src/frontend/dist"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}