-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "rsschool-app",
"version": "1.0.0",
"private": true,
"workspaces": [
"server",
"nestjs",
"client"
],
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"compile": "turbo run compile",
"format": "oxfmt",
"ci:format": "oxfmt --check",
"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",
"openapi": "turbo run openapi"
},
"dependencies": {
"axios": "1.8.4",
"dayjs": "^1.11",
"lodash": "4.17.21",
"typeorm": "0.3.20"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@swc/core": "^1.15.18",
"@total-typescript/ts-reset": "0.6.1",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.24",
"@types/node": "24.12.0",
"@vitest/coverage-v8": "~4.1.0",
"@vitest/eslint-plugin": "^1.6.11",
"dotenv": "^16.5.0",
"eslint": "10.0.3",
"eslint-config-turbo": "2.8.16",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-boundaries": "5.4.0",
"globals": "^17.4.0",
"jest": "30.2.0",
"oxfmt": "0.38.0",
"std-env": "^4.0.0",
"ts-node": "10.9.2",
"turbo": "2.8.12",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"unplugin-swc": "^1.5.9",
"vitest": "~4.1.0"
},
"packageManager": "npm@10.7.0"
}