-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "essential-packages",
"description": "essential packages for bit-country",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/bit-country/essential-packages.git",
"author": "Tony Huỳnh <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.17.1"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"build": "nx run-many -t build --parallel 5",
"clean": "nx run-many -t clean",
"test.unit": "vitest --passWithNoTests",
"test.unit.run": "vitest run --passWithNoTests",
"test.unit.coverage": "vitest --coverage",
"publish": "nx run-many -t publish",
"lint.format": "biome check --apply packages",
"lint.check": "biome check packages",
"lint.types": "nx run-many --target=type-check",
"lint.bundlesize": "bundlesize",
"lint.duplicate": "jscpd"
},
"devDependencies": {
"@biomejs/biome": "^1.3.3",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}