-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "root",
"description": "Easily build your customized Nostr Relay.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"prepublish": "npm run clean && npm run build",
"publish": "lerna publish",
"lint": "eslint 'packages/**/**.ts' --ignore-pattern 'packages/**/*.spec.ts'",
"lint:check": "eslint --max-warnings 0 'packages/**/**.ts' --ignore-pattern 'packages/**/*.spec.ts'",
"format": "prettier \"**/*.ts\" \"packages/**/*.json\" --ignore-path ./.prettierignore --write",
"format:check": "prettier \"**/*.ts\" \"packages/**/*.json\" --ignore-path ./.prettierignore --check",
"test": "jest",
"docs": "typedoc"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.6.5",
"@nx/nx-darwin-x64": "19.6.5",
"@nx/nx-linux-x64-gnu": "19.6.5",
"@nx/nx-win32-x64-msvc": "19.6.5"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"version": "0.0.1"
}