-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.25 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
{
"name": "@opensourceframework/monorepo",
"version": "1.0.0",
"private": true,
"description": "OpenSourceFramework - A collection of maintained Next.js packages",
"workspaces": [
"packages/*",
"tools/*"
],
"scripts": {
"prepare": "husky install",
"test": "turbo run test",
"test:compat": "node scripts/test-compat.mjs",
"test:coverage": "turbo run test:coverage",
"test:ci": "turbo run test:ci",
"test:types": "turbo run test:types",
"test:api": "turbo run test:api",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"build:all": "turbo run build",
"bundle-size": "pnpm run build && bundle-phobia-cli @opensourceframework/next-compose-plugins --limit 10",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"release": "changeset version && pnpm install && turbo run build --filter='./packages/*'",
"publish": "changeset publish",
"audit": "pnpm audit --audit-level=low",
"audit:moderate": "pnpm audit --audit-level=moderate"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"globals": "^17.4.0",
"husky": "^9.0.10",
"lint-staged": "^16.3.3",
"prettier": "^3.2.4",
"turbo": "^2.8.15",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.0",
"vitest": "^2.1.9",
"@vitest/coverage-v8": "^2.1.9"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.0.0",
"pnpm": {
"overrides": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"serialize-javascript": "^7.0.3",
"undici": "^7.24.0",
"happy-dom": "^20.0.0",
"esbuild": "^0.25.0",
"flatted": "^3.4.2",
"next": ">=16.1.7",
"ws": ">=8.17.1",
"tar-fs": ">=3.1.1"
}
},
"dependencies": {
"oauth": "^0.10.2"
}
}