-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
117 lines (117 loc) · 3.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "turborepo-remote-cache",
"version": "2.2.1",
"description": "Turborepo remote cache server",
"main": "./dist/app.js",
"type": "module",
"exports": {
".": {
"import": "./dist/app.js",
"require": "./dist/app.js"
},
"./aws-lambda": {
"import": "./dist/aws-lambda.js",
"require": "./dist/aws-lambda.js"
},
"./package.json": "./package.json"
},
"author": "Maksim Sinik <maksim@sinik.it>",
"license": "MIT",
"bin": {
"turborepo-remote-cache": "./dist/cli.js"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "pnpm lint && rimraf ./dist",
"build": "tsc -p ./tsconfig.json",
"build:docker": "tsc -p ./tsconfig.json",
"start": "node --enable-source-maps dist/index.js",
"lint": "biome check src test",
"fmt": "biome format src test",
"dev": "run-p dev:start check:types",
"dev:start": "tsx watch --inspect --env-file=.env src/index.ts",
"check:types": "tsc -p ./tsconfig.json --noEmit",
"test": "tsx --test ./test/*.ts",
"test:watch": "tsx --watch --test ./test/*.ts",
"test:coverage": "c8 --all --src src --reporter lcov --reporter text tsx --test ./test/*.ts",
"commitlint": "commitlint",
"semantic-release": "semantic-release",
"commit": "npx git-cz",
"prepare": "husky install",
"check-updates": "pnpm outdated --recursive --long"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ducktors/turborepo-remote-cache.git"
},
"dependencies": {
"@azure/storage-blob": "^12.23.0",
"@fastify/aws-lambda": "^3.2.0",
"@google-cloud/storage": "6.9.2",
"@hapi/boom": "10.0.0",
"@sinclair/typebox": "0.25.21",
"ajv": "8.12.0",
"aws-sdk": "2.1310.0",
"close-with-grace": "1.1.0",
"env-schema": "5.2.0",
"fastify": "4.12.0",
"fastify-plugin": "4.5.0",
"fs-blob-store": "6.0.0",
"hyperid": "3.1.1",
"pino": "6.13.3",
"pino-pretty": "10.3.0",
"s3-blob-store": "4.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/prompt": "^17.7.1",
"@ducktors/tsconfig": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.6",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/node": "^20.6.3",
"c8": "^9.0.0",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-plugin-function-rules": "^2.0.2",
"cz-conventional-changelog": "^3.3.0",
"fastify-tsconfig": "^2.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^4.1.2",
"s3rver": "^3.7.1",
"semantic-release": "^22.0.1",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
},
"bugs": {
"url": "https://github.com/ducktors/turborepo-remote-cache/issues"
},
"homepage": "https://github.com/ducktors/turborepo-remote-cache#readme",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"turborepo",
"monorepo",
"remote",
"cache"
],
"files": [
"api",
"dist",
"vercel.json"
],
"pnpm": {
"overrides": {
"xml2js@<0.5.0": ">=0.5.0",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3"
}
}
}