forked from unkeyed/unkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "unkey",
"workspaces": [
"apps/*",
"packages/*"
],
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "is-ci || husky install",
"dev": "turbo run dev",
"build": "pnpm turbo run build --filter=!./examples/*",
"fmt": "pnpm biome format . --write && pnpm biome check . --apply-unsafe ",
"test": "turbo run test",
"bootstrap": "turbo run bootstrap",
"commit": "cz",
"bump-versions": "pnpm changeset version && pnpm install"
},
"author": "Andreas Thomas",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.2.2",
"@changesets/cli": "^2.26.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.2",
"ts-node": "^10.9.1",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"@opentelemetry/api": "1.4.1",
"@opentelemetry/core": "1.13.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.39.1",
"@opentelemetry/resources": "1.13.0",
"@opentelemetry/sdk-trace-base": "1.13.0",
"@opentelemetry/sdk-trace-node": "1.13.0",
"@opentelemetry/semantic-conventions": "1.13.0"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "biome check --apply"
}
}