forked from falcondev-oss/github-actions-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.48 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
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": "github-actions-cache-server",
"type": "module",
"version": "4.0.1",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "nitropack prepare && husky",
"dev": "nitropack dev",
"build": "nitropack build",
"preview": "node .output/server/index.mjs",
"lint": "eslint --cache . && prettier --check --cache .",
"lint:ci": "eslint --cache --cache-strategy content . && prettier --check --cache --cache-strategy content .",
"lint:fix": "eslint --fix --cache . && prettier --write --cache .",
"type-check": "tsc -p tsconfig.json --noEmit",
"action": "act -v --env ACTIONS_CACHE_URL=http://host.docker.internal:3000/test_token/ --container-architecture linux/amd64 -W tests",
"test:watch": "DEBUG=true VITEST_DB_DRIVER=sqlite VITEST_STORAGE_DRIVER=filesystem vitest --watch --ui",
"test:run": "vitest run"
},
"changelogithub": {
"extends": "gh:falcondev-it/configs/changelogithub"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.674.0",
"@aws-sdk/s3-request-presigner": "^3.674.0",
"@google-cloud/storage": "^7.13.0",
"@types/better-sqlite3": "^7.6.11",
"@types/pg": "^8.11.10",
"better-sqlite3": "^11.4.0",
"consola": "^3.2.3",
"croner": "^9.0.0",
"execa": "^9.4.1",
"h3": "^1.13.0",
"kysely": "^0.27.4",
"mysql2": "^3.11.3",
"nitropack": "^2.9.7",
"pg": "^8.13.0",
"typescript": "^5.6.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@actions/cache": "^3.2.4",
"@commitlint/cli": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@louishaftmann/commitlint-config": "^4.0.3",
"@louishaftmann/eslint-config": "^4.0.3",
"@louishaftmann/lintstaged-config": "^4.0.3",
"@louishaftmann/prettier-config": "^4.0.3",
"@testcontainers/mysql": "^10.13.2",
"@testcontainers/postgresql": "^10.13.2",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/node": "^22.7.6",
"@types/wait-on": "^5.3.4",
"@vitest/ui": "^2.1.3",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"execa": "^9.3.1",
"husky": "^9.1.6",
"ky": "^1.7.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"testcontainers": "^10.13.2",
"ts-pattern": "^5.5.0",
"vitest": "^2.1.3",
"wait-on": "^8.0.1"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}