-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"description": "Application that underlies the FF New Tab",
"name": "firefox-home-new-tab",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-case": [
2,
"always",
"lower-case"
],
"scope-empty": [
2,
"never"
]
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@turbo/gen": "^2.8.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"syncpack": "^13.0.4",
"turbo": "^2.8.3",
"typescript": "5.9.3"
},
"engines": {
"node": "^24",
"pnpm": "^10"
},
"license": "MPL-2.0",
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"private": true,
"scripts": {
"build": "turbo run build",
"cache-images": "node scripts/cache-cloudinary-images.js",
"check-types": "turbo run check-types",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "turbo gen --config config/generator-config/config.ts",
"lint": "turbo run lint",
"lint-staged": "turbo run lint-staged",
"postinstall": "syncpack fix-mismatches && syncpack format",
"prepare": "husky",
"rebundle": "turbo run rebundle",
"storybook": "turbo run storybook",
"style-lint": "turbo run style-lint",
"sync-assets": "turbo run sync-assets",
"test": "turbo run test",
"test-update": "turbo run test-update"
},
"syncpack": {
"customTypes": {
"engines": {
"path": "engines",
"strategy": "versionsByName"
}
},
"dependencyTypes": [
"engines"
],
"sortFirst": [
"author",
"description",
"name",
"version"
]
}
}