-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
26 lines (26 loc) · 996 Bytes
/
package.json
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
{
"name": "cineverse",
"author": "Abeeb Raheem",
"license": "ISC",
"private": true,
"scripts": {
"start": "pnpm -r run dev",
"test:server": "pnpm --parallel run test:server",
"clean": "pnpm -r run clean",
"libs": "pnpm --filter @cineverse/libs run dev",
"libs:build": "pnpm --filter @cineverse/libs run build",
"libs:test": "pnpm --filter @cineverse/libs run test",
"auth": "pnpm --filter auth-service run dev",
"auth:build": "pnpm --filter auth-service run build",
"auth:test": "pnpm --filter auth-service run test",
"movie": "pnpm --filter movie-service run dev",
"movie:build": "pnpm --filter movie-service run build",
"movie:test": "pnpm --filter movie-service run test",
"test": "npx nx run-many --target=test --all",
"build": "npx nx run-many --target=build --all",
"lint": "npx nx run-many -t lint:fix -p auth-service movie-service ticket-service, payment-service"
},
"devDependencies": {
"nx": "^16.7.4"
}
}