-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.56 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.56 KB
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
{
"name": "monkeytype",
"version": "26.6.0",
"private": true,
"license": "GPL-3.0",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"full-check": "turbo lint build test integration-test check-assets --force",
"prepare": "husky install",
"pre-commit": "lint-staged",
"ts-check": "turbo run ts-check",
"lint": "turbo run lint",
"lint-be": "turbo run lint --filter @monkeytype/backend",
"lint-fe": "turbo run lint --filter @monkeytype/frontend",
"lint-pkg": "turbo run lint --filter=\"./packages/*\"",
"lint-fix": "turbo run lint -- --fix",
"lint-fast": "turbo run lint-fast",
"lint-fast-be": "turbo run lint-fast --filter @monkeytype/backend",
"lint-fast-fe": "turbo run lint-fast --filter @monkeytype/frontend",
"lint-fast-pkg": "turbo run lint-fast --filter=\"./packages/*\"",
"build": "turbo run build",
"build-be": "turbo run build --filter @monkeytype/backend",
"build-fe": "turbo run build --filter @monkeytype/frontend",
"build-pkg": "turbo run build --filter=\"./packages/*\"",
"test": "turbo run test integration-test",
"test-be": "turbo run test integration-test --filter @monkeytype/backend",
"test-fe": "turbo run test --filter @monkeytype/frontend",
"test-pkg": "turbo run test --filter=\"./packages/*\"",
"dev": "turbo run dev --force",
"dev-be": "turbo run dev --force --filter @monkeytype/backend",
"dev-fe": "turbo run dev --force --filter @monkeytype/frontend",
"dev-pkg": "turbo run dev --force --filter=\"./packages/*\"",
"start": "turbo run start",
"start-be": "turbo run start --filter @monkeytype/backend",
"start-fe": "turbo run start --filter @monkeytype/frontend",
"docker": "cd backend && npm run docker",
"audit-fe": "cd frontend && npm run audit",
"preview-fe": "monkeytype-release --preview-fe",
"release": "monkeytype-release",
"release-fe": "monkeytype-release --fe",
"release-be": "monkeytype-release --be",
"release-no-deploy": "monkeytype-release --no-deploy",
"release-dry": "monkeytype-release --dry",
"hotfix": "monkeytype-release --hotfix",
"hotfix-fe": "monkeytype-release --hotfix --fe",
"hotfix-be": "monkeytype-release --hotfix --be",
"hotfix-dry": "monkeytype-release --hotfix --dry",
"format-check": "oxfmt . --check",
"format-fix": "oxfmt .",
"lint-json-assets": "turbo lint-json --filter @monkeytype/frontend",
"check-assets": "turbo check-assets --filter @monkeytype/frontend",
"check-assets-quotes": "turbo check-assets --filter @monkeytype/frontend -- quotes",
"check-assets-languages": "turbo check-assets --filter @monkeytype/frontend -- languages",
"check-assets-others": "turbo check-assets --filter @monkeytype/frontend -- others",
"knip": "knip",
"update-oxc": "pnpm up -D -r oxlint@latest oxfmt@latest oxlint-tsgolint@latest"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "19.2.2",
"@monkeytype/release": "workspace:*",
"@vitest/coverage-v8": "4.0.15",
"conventional-changelog": "6.0.0",
"husky": "8.0.1",
"knip": "2.19.2",
"lint-staged": "13.2.3",
"only-allow": "1.2.1",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"oxlint-tsgolint": "0.14.2",
"prettier": "3.7.1",
"turbo": "2.7.5",
"vitest": "4.0.15"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{ts,tsx,js}": [
"oxlint --type-aware --type-check"
]
},
"engines": {
"node": ">=24.0.0 <25"
},
"packageManager": "pnpm@10.28.1"
}