-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.83 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "tcrn-tms",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "TCRN TMS - Talent Management System for VTuber/VUP",
"license": "PolyForm-Noncommercial-1.0.0",
"author": "月球厨师莱恩 (TPMOONCHEFRYAN)",
"repository": {
"type": "git",
"url": "https://github.com/tpmoonchefryan/tcrn-tms.git"
},
"bugs": {
"url": "https://github.com/tpmoonchefryan/tcrn-tms/issues"
},
"homepage": "https://github.com/tpmoonchefryan/tcrn-tms#readme",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "turbo dev",
"infra:up": "docker compose --env-file .env.local up -d postgres redis minio nats",
"infra:up:observability": "docker compose --env-file .env.local --profile observability up -d loki tempo",
"infra:ps": "docker compose --env-file .env.local ps",
"infra:down": "docker compose --env-file .env.local down",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"test:watch": "turbo watch test --continue dependencies-successful",
"test:unit": "turbo test",
"test:integration": "pnpm --filter @tcrn/api test:integration",
"test:e2e": "playwright test",
"test:coverage": "turbo test:cov",
"test:isolation": "pnpm --filter @tcrn/api test:isolation",
"test:perf:smoke": "k6 run k6/scenarios/smoke.js",
"test:perf:load": "k6 run k6/scenarios/load.js",
"test:perf:stress": "k6 run k6/scenarios/stress.js",
"coverage:check": "turbo test:cov",
"type-check": "turbo typecheck",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push",
"db:migrate": "turbo db:migrate",
"db:migrate:test": "DATABASE_URL=$DATABASE_URL turbo db:migrate",
"db:seed": "pnpm --filter @tcrn/database db:seed",
"db:reset": "pnpm --filter @tcrn/database db:reset",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@tcrn/database": "workspace:*",
"@tcrn/shared": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@vitest/coverage-v8": "4.0.17",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-check": "^4.5.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.0",
"turbo": "2.7.5",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
}
}