-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.57 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.57 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
{
"name": "dkutils-workspace",
"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"
}
},
"onlyBuiltDependencies": [
"sharp",
"onnxruntime-node",
"ffmpeg-static",
"esbuild",
"@biomejs/biome",
"core-js",
"protobufjs"
]
},
"scripts": {
"dev": "turbo run dev",
"clean": "reclaimspace --yes",
"build": "turbo run build",
"test": "turbo run test",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"lint:all": "npx biome lint --write package backend frontend",
"type-check": "pnpm --filter dkutils type-check",
"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": {
"@biomejs/biome": "catalog:",
"husky": "catalog:",
"lint-staged": "^16.2.7",
"prettier": "^3.3.3",
"turbo": "catalog:",
"reclaimspace": "^0.2.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "biome check --write"
}
}