-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"private": false,
"name": "themostannoyingwebsite",
"version": "0.14.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"
},
"type": "module",
"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"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"symlink-dir": "9.0.0",
"turbo": "2.8.3",
"typescript": "catalog:"
},
"engines": {
"node": ">=20"
},
"funding": {
"type": "individual",
"url": "https://www.onet.dev/donate"
},
"packageManager": "pnpm@10.0.0",
"dependencies": {
"import-in-the-middle": "^3.0.0",
"require-in-the-middle": "^8.0.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@sentry/cli"
]
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json,css,md}": "biome check --write"
}
}