-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.25 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@obusk/npm-diff.app",
"type": "module",
"private": true,
"description": "📦🔃 Inspect changes between npm packages in a webapp",
"keywords": [
"diff",
"npm",
"package",
"vercel"
],
"repository": {
"type": "git",
"url": "https://github.com/oBusk/npm-diff.app.git"
},
"author": "Oscar Busk <oscar.busk@gmail.com>",
"license": "ISC",
"engines": {
"node": "24.x"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.14.1",
"onFail": "download"
}
},
"packageManager": "pnpm@10.33.0",
"simple-git-hooks": {
"pre-commit": "pnpm run lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"**/*.{md,yml,yaml,json}": [
"prettier --ignore-path .gitignore --ignore-path .prettierignore --write"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"postlint": "pnpm run prettier",
"lint-fix": "eslint . --fix",
"prettier": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check '**/*.{md,yml,yaml,json}'",
"postlint-fix": "pnpm run prettier-fix",
"prettier-fix": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write '**/*.{md,yml,yaml,json}'",
"lint-staged": "lint-staged",
"test": "jest --watch",
"test-ci": "jest --ci"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@vercel/analytics": "^2.0.1",
"@wrksz/themes": "^0.8.3",
"class-variance-authority": "^0.7.1",
"downshift": "^9.3.2",
"gitdiff-parser": "^0.3.1",
"jest": "^30.3.0",
"libnpmdiff": "^6.1.4",
"lucide-react": "^0.563.0",
"next": "~16.2.3",
"npm-package-arg": "^11.0.3",
"pacote": "^18.0.6",
"react": "19.2.5",
"react-diff-view": "^3.3.3",
"react-dom": "19.2.5",
"react-use": "^17.6.0",
"semver": "^7.7.4",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"validate-npm-package-name": "5.0.0"
},
"devDependencies": {
"@obusk/eslint-config-next": "^16.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/libnpmdiff": "^2.0.3",
"@types/node": "^24.12.2",
"@types/npm-package-arg": "^6.1.4",
"@types/pacote": "^11.1.8",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/semver": "^7.7.1",
"@types/validate-npm-package-name": "^4.0.2",
"autoprefixer": "^10.4.27",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9",
"prettier": "~3.8.2",
"simple-git-hooks": "^2.13.1",
"typescript": "~5.9.3"
}
}