-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
{
"name": "dev-tools",
"version": "1.0.0",
"description": "A comprehensive collection of essential utility tools for developers by Prisma Devlab",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --ignore-unknown --write '*/**/*.{js,json,ts,tsx,scss,css,md}'",
"prepare": "npx husky",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-devlab/dev-tools.git"
},
"keywords": [
"developer tools",
"utility tools",
"web development",
"prisma",
"developer utilities",
"coding tools",
"programming utilities"
],
"author": {
"name": "Prisma Devlab",
"url": "https://github.com/prisma-devlab/"
},
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/prisma-devlab/dev-tools/issues"
},
"homepage": "https://github.com/prisma-devlab/dev-tools",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.485.0",
"next": "^14.2.16",
"next-themes": "^0.4.6",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.16",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-check-file": "^3.1.0",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"postcss": "^8",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}