-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.46 KB
/
package.json
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pacote",
"description": "Monorepo for the @pacote organisation.",
"repository": "https://github.com/PacoteJS/pacote",
"bugs": {
"url": "https://github.com/PacoteJS/pacote/issues"
},
"author": {
"name": "Luís Rodrigues",
"email": "[email protected]",
"url": "https://goblindegook.com"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "lerna run build",
"build:docs": "typedoc",
"clean": "rimraf coverage docs packages/*/lib packages/*/tsconfig.tsbuildinfo",
"commit": "git-cz",
"format": "biome check --apply .",
"lint": "biome lint .",
"plop": "plop",
"release": "lerna publish",
"test": "pnpm lint && vitest",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"**/*.{css,md}": [
"prettier --write"
],
"**/*.{js,json,ts,tsx}": [
"biome check --apply ."
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.1.0",
"@types/ramda": "^0.30.1",
"@types/react": "^18.3.3",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"concurrently": "^9.0.1",
"fast-check": "^3.19.0",
"fp-ts": "^2.16.8",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"jsdom": "^25.0.0",
"lerna": "^8.1.6",
"lint-staged": "^15.2.7",
"msw": "^2.3.1",
"nx": "^20.0.6",
"plop": "^4.0.1",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^1.6.0",
"xxhash-addon": "^1.5.0"
},
"dependencies": {
"@pacote/array": "file:packages/array",
"@pacote/bloom-filter": "file:packages/bloom-filter",
"@pacote/bloom-search": "file:packages/bloom-search",
"@pacote/computus": "file:packages/computus",
"@pacote/emitter": "file:packages/emitter",
"@pacote/error": "file:packages/error",
"@pacote/eslint-config": "file:packages/eslint-config",
"@pacote/eslint-config-jest": "file:packages/eslint-config-jest",
"@pacote/eslint-config-react": "file:packages/eslint-config-react",
"@pacote/ffetch": "file:packages/ffetch",
"@pacote/flux-actions": "file:packages/flux-actions",
"@pacote/get-style": "file:packages/get-style",
"@pacote/iff": "file:packages/iff",
"@pacote/immutable": "file:packages/immutable",
"@pacote/interpolate": "file:packages/interpolate",
"@pacote/is-plain-object": "file:packages/is-plain-object",
"@pacote/jest-either": "file:packages/jest-either",
"@pacote/linked-list": "file:packages/linked-list",
"@pacote/memoize": "file:packages/memoize",
"@pacote/non-empty-array": "file:packages/non-empty-array",
"@pacote/option": "file:packages/option",
"@pacote/pipe": "file:packages/pipe",
"@pacote/pixels": "file:packages/pixels",
"@pacote/react-use-outside": "file:packages/react-use-outside",
"@pacote/react-with-props": "file:packages/react-with-props",
"@pacote/result": "file:packages/result",
"@pacote/retry": "file:packages/retry",
"@pacote/shuffle": "file:packages/shuffle",
"@pacote/throttle": "file:packages/throttle",
"@pacote/u32": "file:packages/u32",
"@pacote/u64": "file:packages/u64",
"@pacote/validation": "file:packages/validation",
"@pacote/xxhash": "file:packages/xxhash"
}
}