-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.23 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
{
"private": false,
"name": "themostannoyingwebsite",
"type": "module",
"version": "0.18.0",
"license": "MIT",
"author": "Konrad Koller <info@onet.dev> (https://onet.dev)",
"homepage": "https://themostannoyingwebsite.com",
"repository": {
"type": "git",
"url": "https://github.com/onetdev/themostannoyingwebsite.com"
},
"bugs": {
"url": "https://github.com/onetdev/themostannoyingwebsite.com/issues",
"email": "info@themostannoyingwebsite.com"
},
"funding": {
"type": "individual",
"url": "https://www.onet.dev/donate"
},
"scripts": {
"build": "turbo run build",
"build:metadata": "turbo run build:metadata --filter=@maw/content-api --filter=@maw/web",
"check-types": "turbo run check-types",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "husky",
"link-assets": "pnpx symlink-dir ./packages/content-api/data ./apps/web/public/assets/articles",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"clean": "turbo run clean --force",
"clean:pnpm": "pnpm store prune",
"clean:all": "pnpm recursive exec -- rm -rf node_modules dist .next .turbo storybook-static"
},
"dependencies": {
"import-in-the-middle": "^3.0.0",
"require-in-the-middle": "^8.0.1"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"symlink-dir": "10.0.1",
"turbo": "^2.8.21",
"typescript": "catalog:"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@sentry/cli"
],
"overrides": {
"brace-expansion@<1.1.13": "1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"brace-expansion@>=4.0.0 <5.0.5": "5.0.5",
"picomatch@<2.3.2": "2.3.2",
"yaml@>=1.0.0 <1.10.3": "1.10.3",
"yaml@>=2.0.0 <2.8.3": "2.8.3",
"postcss": "^8.5.12",
"lodash": "^4.18.1",
"uuid": "^14.0.0",
"next": "^16.2.4"
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json,css,md}": "biome check --write"
}
}