-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.03 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
{
"name": "next-shell-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo for @jonmatum/next-shell — a reusable Next.js app shell built on shadcn/ui with a strict semantic-token design system.",
"license": "MIT",
"author": "Jonatan Mata <jonmatum@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/jonmatum/next-shell.git"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" run build",
"dev": "pnpm -r --parallel --filter \"./packages/*\" run dev",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"test:watch": "pnpm -r --parallel run test:watch",
"clean": "pnpm -r exec rm -rf dist node_modules/.cache",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next-shell": "workspace:*",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tsx": "^4.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}