-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.98 KB
/
package.json
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
{
"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 <[email protected]>",
"license": "ISC",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"volta": {
"node": "20.15.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"**/*.{md,yml,yaml,json}": [
"prettier --write"
]
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint --ignore-path .gitignore",
"postlint": "npm run prettier",
"lint-fix": "next lint --ignore-path .gitignore --fix",
"prettier": "prettier **/*.{md,yml,yaml,json} --ignore-path .gitignore --check",
"postlint-fix": "npm run prettier-fix",
"prettier-fix": "prettier **/*.{md,yml,yaml,json} --ignore-path .gitignore --write",
"lint-staged": "lint-staged",
"test": "jest --watch",
"test-ci": "jest --ci"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.1",
"@vercel/analytics": "^1.3.1",
"class-variance-authority": "^0.7.0",
"downshift": "^9.0.6",
"gitdiff-parser": "^0.3.1",
"jest": "^29.7.0",
"libnpmdiff": "^6.1.3",
"lucide-react": "^0.396.0",
"next": "^14.2.4",
"next-themes": "^0.3.0",
"npm-package-arg": "^11.0.2",
"pacote": "^18.0.6",
"react": "^18.3.1",
"react-diff-view": "^3.2.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.0",
"semver": "^7.6.2",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"validate-npm-package-name": "5.0.0"
},
"devDependencies": {
"@obusk/eslint-config-next": "^0.4.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/libnpmdiff": "^2.0.3",
"@types/node": "^20.14.8",
"@types/npm-package-arg": "^6.1.4",
"@types/pacote": "^11.1.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.5.8",
"@types/validate-npm-package-name": "^4.0.2",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.4.5"
}
}