-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.32 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
{
"name": "cinecircle-monorepo",
"version": "1.0.0",
"private": true,
"description": "Cinecircle - community-oriented movie rating platform",
"scripts": {
"install:all": "npm run backend:install && npm run frontend:install",
"clean:all": "npm run backend:clean && npm run frontend:clean",
"backend:start": "docker-compose -f docker-compose.dev.yml up --build",
"backend:stop": "docker-compose -f docker-compose.dev.yml down --volumes",
"backend:logs": "docker-compose -f docker-compose.dev.yml logs -f",
"backend:shell": "docker exec -it cinecircle-backend-1 sh",
"backend:clean": "docker-compose -f docker-compose.dev.yml down --volumes --rmi all",
"backend:test": "docker exec -it cinecircle-backend-1 npm run test",
"backend:test:watch": "docker exec -it cinecircle-backend-1 npm run test:watch",
"backend:test:coverage": "docker exec cinecircle-backend-1 npm run test:coverage",
"backend:test:unit": "docker exec -it cinecircle-backend-1 npm run test:unit",
"backend:test:integration": "docker exec -it cinecircle-backend-1 npm run test:integration",
"backend:lint": "docker exec cinecircle-backend-1 npm run lint",
"backend:lint:fix": "docker exec cinecircle-backend-1 npm run lint:fix",
"backend:format": "docker exec cinecircle-backend-1 npm run format",
"backend:format:check": "docker exec cinecircle-backend-1 npm run format:check",
"backend:build": "docker exec cinecircle-backend-1 npm run build",
"backend:docs": "docker exec cinecircle-backend-1 npm run docs",
"backend:types": "docker exec cinecircle-backend-1 npm run types:all",
"backend:db:studio": "docker exec -it cinecircle-backend-1 npm run db:studio",
"backend:db:sync": "docker exec -it cinecircle-backend-1 npm run db:sync",
"backend:install": "cd backend && npm install",
"frontend:start": "cd frontend && npm start",
"frontend:test": "cd frontend && npm test",
"frontend:android": "cd frontend && npm run android",
"frontend:ios": "cd frontend && npm run ios",
"frontend:web": "cd frontend && npm run web",
"frontend:clean": "cd frontend && npm run clean",
"frontend:install": "cd frontend && npm install"
},
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"@types/node": "^24.7.2",
"tsd": "^0.33.0",
"vitest": "^3.2.4"
}
}