-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "dev-toolkit",
"description": "Password, hash, JWT and URL utilities that run entirely in your browser.",
"private": true,
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.5.1",
"author": {
"name": "Petr Kašpar",
"url": "https://github.com/ksprptr"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"lucide-react": "^1.35.0",
"motion": "^13.1.1",
"next": "16.3.3",
"next-themes": "^0.4.6",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"eslint": "^10.9.1",
"eslint-config-next": "16.3.3",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
}
}