-
-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
35 lines (35 loc) · 1.23 KB
/
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
27
28
29
30
31
32
33
34
35
{
"name": "rsschool-app",
"version": "1.0.0",
"private": true,
"workspaces": [
"server",
"nestjs",
"client"
],
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"format": "prettier --write client server nestjs common setup docs .github",
"ci:format": "prettier --check client server nestjs common setup docs .github",
"db:restore": "podman exec -i db psql -U rs_master -d rs_school < ./setup/backup-local.sql",
"db:dump": "PGPASSWORD=12345678 pg_dump -h localhost --username rs_master rs_school --file ./setup/backup-local.sql",
"db:dump:win": "pg_dump -h localhost --username rs_master rs_school > ./setup/backup-local.sql",
"db:up": "podman compose -f ./setup/docker-compose.yml up -d",
"db:down": "podman compose -f ./setup/docker-compose.yml down"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.5.1",
"@types/jest": "29.5.9",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "8.54.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"turbo": "1.10.16"
},
"packageManager": "[email protected]"
}