forked from ducktors/turborepo-remote-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.63 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
{
"name": "turborepo-remote-cache",
"version": "1.14.1",
"description": "Turborepo remote cache server",
"main": "build",
"author": "Maksim Sinik <[email protected]>",
"license": "MIT",
"bin": {
"turborepo-remote-cache": "./build/cli.js"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "pnpm lint && rimraf ./build",
"build": "tsc -p ./tsconfig.json",
"start": "node --enable-source-maps build/index.js",
"lint": "eslint --ext .ts --no-error-on-unmatched-pattern \"src/**/*.ts\" \"test/**/*.ts\"",
"dev": "tsup --watch --onSuccess \"run-p dev:start check:types\"",
"dev:start": "node --inspect -r @cspotcode/source-map-support/register -r dotenv/config build/index.js",
"check:types": "tsc -p ./tsconfig.json --noEmit",
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json tap --ts",
"posttest": "tap --coverage-report=lcov --no-browser",
"test:watch": "pnpm test -- --watch",
"test:report": "pnpm test -- --output-file=out.tap && tap-mocha-reporter xunit < out.tap > junit-testresults.xml",
"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": {
"@fastify/aws-lambda": "^3.2.0",
"@google-cloud/storage": "6.9.2",
"@hapi/boom": "10.0.0",
"@sinclair/typebox": "0.25.21",
"@vercel/node": "1.12.1",
"ajv": "8.12.0",
"aws-sdk": "2.1310.0",
"azure-storage": "^2.10.7",
"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",
"fs-extra": "^11.1.0",
"hyperid": "3.1.1",
"make-promises-safe": "5.1.0",
"pino": "6.13.3",
"pino-pretty": "9.1.1",
"s3-blob-store": "4.1.1",
"tslib": "2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/lint": "^17.4.4",
"@commitlint/prompt": "^17.5.0",
"@cspotcode/source-map-support": "^0.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.13.0",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.13.3",
"commitlint-plugin-function-rules": "^1.7.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.6",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^4.4.1",
"s3rver": "^3.7.1",
"semantic-release": "^20.1.3",
"tap": "^16.3.4",
"ts-node": "^10.4.0",
"tsup": "^6.6.0",
"typescript": "^4.5.4"
},
"bugs": {
"url": "https://github.com/ducktors/turborepo-remote-cache/issues"
},
"homepage": "https://github.com/ducktors/turborepo-remote-cache#readme",
"directories": {
"test": "test"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"keywords": [
"turborepo",
"monorepo",
"remote",
"cache"
],
"files": [
"build",
"vercel.json"
]
}