-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "tirbi",
"version": "1.0.1",
"description": "A turborepo remote cache compatible server",
"author": "Rune Finstad Halvorsen <[email protected]>",
"repository": "github:runeh/tirbi",
"homepage": "https://github.com/runeh/tirbi#readme",
"license": "Apache-2.0",
"bin": "./dist/cli.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src/**",
"prepare": "husky install",
"test": "jest --testPathIgnorePatterns=e2e.test.ts",
"test-all": "jest",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@nodelib/fs.walk": "^1.2.8",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.2",
"@types/lru-cache": "^7.10.10",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"del": "^6.0.0",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"execa": "^5.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"test-monorepo-generator": "^1.0.0-beta3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@fastify/bearer-auth": "^7.0.1",
"@google-cloud/storage": "^5.20.5",
"commander": "^9.2.0",
"eslint-config-prettier": "^8.5.0",
"fastify": "^3.29.0",
"fastify-plugin": "^3.0.0",
"get-stream": "^6.0.1",
"hasha": "^5.2.2",
"lru-cache": "^7.10.1",
"tempy": "^1.0.0",
"to-readable-stream": "^2.0.0",
"ts-invariant": "^0.10.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md,json}": "prettier --write"
},
"standard-version": {
"scripts": {
"prerelease": "yarn run build && yarn run test"
}
}
}