-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "dkutils",
"version": "2.0.2",
"description": "A web-based platform offering a collection of utility tools, built with MERN stack (MongoDB, Express.js, React.js, Node.js) and TailwindCSS",
"private": true,
"packageManager": "pnpm@10.28.2",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"format": "prettier --write .",
"prepare": "husky",
"start": "turbo run start"
},
"keywords": [
"utility",
"tools",
"web-app",
"mern-stack",
"react",
"node.js",
"express.js",
"mongodb",
"tailwind-css",
"image-converter",
"pdf-tools",
"text-tools",
"url-shortener",
"qr-code",
"password-generator",
"hash-generator",
"authentication",
"user-management",
"responsive-design",
"open-source"
],
"author": "gaureshpai",
"license": "ISC",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.3.3",
"turbo": "^2.8.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
}
}