-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.95 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.95 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
83
84
85
86
87
88
{
"name": "@repo/root",
"version": "0.1.0",
"type": "module",
"description": "A collection of useful utility Classes, Functions, React Hooks and Components.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mimshins/utilityjs.git"
},
"author": "mimshins <mostafa.sh.coderino@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=24"
},
"volta": {
"node": "24.10.0",
"pnpm": "10.22.0"
},
"keywords": [
"utils",
"utility",
"functions",
"functional programming",
"react"
],
"scripts": {
"changesets:empty": "changeset add --empty",
"changesets:create": "changeset add",
"changesets:apply": "changeset version",
"changesets:status": "changeset status --since=main",
"release": "pnpm build && changeset publish --tag latest",
"test": "pnpm -r --parallel run test",
"test:watch": "pnpm -r --parallel run test:watch",
"build": "pnpm -r run build",
"format:prettier": "prettier . --write --cache --cache-location=.prettiercache",
"format:eslint": "eslint --color --cache --config eslint.config.js --cache-location .eslintcache --fix",
"format": "run-p format:prettier format:eslint",
"check:cycles": "tsx scripts/check-cycles",
"check:format": "prettier . --check --cache --cache-location=.prettiercache",
"check:lint:ecma": "eslint --color --cache --config eslint.config.js --cache-location .eslintcache",
"check:lint:ts": "tsc --project ./tsconfig.json",
"check:lint": "run-p check:lint:ts check:lint:ecma check:format check:cycles"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/madge": "^5.0.3",
"@types/node": "^24.10.10",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.6",
"del": "^8.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"madge": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shx": "^0.4.0",
"tsdown": "^0.17.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.18"
}
}