-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.06 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
{
"name": "versioning-backend",
"version": "1.0.0",
"description": "Stateful backend to keep track of unity versions and docker build queues",
"main": "src/index.js",
"workspaces": [
"functions"
],
"scripts": {
"dev": "node scripts/ensure-husky.mjs && yarn workspace functions dev",
"test": "node scripts/ensure-husky.mjs && vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"lint": "yarn oxlint --report-unused-disable-directives",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"typecheck": "yarn workspace functions typecheck",
"setup:hooks": "node scripts/ensure-husky.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.@(ts|tsx|mts|js|jsx|mjs|cjs)": [
"oxlint --fix --quiet",
"oxfmt --write"
],
"*.@(json|jsonc|json5|md|mdx|yaml|yml|css|scss|sass|html|toml)": "oxfmt --write",
".github/workflows/*.@(yml|yaml)": "actionlint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/game-ci/versioning-backend.git"
},
"keywords": [
"unity",
"ci",
"versioning",
"game-ci",
"GameCI"
],
"author": "GameCI",
"license": "MIT",
"bugs": {
"url": "https://github.com/game-ci/versioning-backend/issues"
},
"homepage": "https://github.com/game-ci/versioning-backend#readme",
"dependencies": {
"@google-cloud/firestore": "^7.8.0",
"firebase-tools": "^13.10.2",
"firestore-backfire": "^2.5.3"
},
"devDependencies": {
"@typescript/native-preview": "^7.0.0-dev.20260505.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^10.3.0",
"eslint-plugin-unicorn": "^64.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"oxfmt": "^0.48.0",
"oxlint": "^1.32.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.14.1",
"dependenciesMeta": {
"esbuild": {
"built": true
},
"protobufjs": {
"built": true
},
"re2": {
"built": true
}
}
}