-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.07 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.07 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
{
"name": "suites-monorepo",
"version": "0.0.0",
"private": true,
"homepage": "https://suites.dev",
"bugs": {
"url": "https://github.com/suites-dev/suites.git"
},
"repository": {
"type": "git",
"url": "https://github.com/suites-dev/suites.git"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Omer Morad",
"email": "omer.moradd@gmail.com"
}
],
"scripts": {
"build": "pnpm lerna run build --stream",
"lint": "pnpm lerna run lint --parallel",
"prepare": "husky",
"test": "pnpm lerna exec pnpm test",
"e2e": "ts-node local-e2e.ts",
"validate-tsdoc-links": "ts-node scripts/validate-tsdoc-links.ts"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"jest-junit": {
"ancestorSeparator": " › ",
"classNameTemplate": "{classname}",
"outputDirectory": "test-reports",
"suiteNameTemplate": "{filepath}",
"titleTemplate": "{title}",
"uniqueOutputName": "true"
},
"packageManager": "pnpm@8.15.9",
"resolutions": {
"ajv": "^6.12.6",
"eslint": "9.8.0",
"@eslint/js": "9.8.0"
},
"devDependencies": {
"@babel/traverse": "7.28.3",
"@eslint/js": "9.8.0",
"@nestjs/common": "^10.4.20",
"@types/jest": "29.5.12",
"@types/node": "^22.0.0",
"@types/sinon": "^10.0.20",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"axios": "1.8.2",
"braces": "3.0.3",
"eslint": "9.8.0",
"eslint-plugin-tsdoc": "^0.5.0",
"follow-redirects": "1.15.11",
"globals": "^16.3.0",
"husky": "^8.0.3",
"inversify": "6.0.1",
"jest": "^29.7.0",
"jest-environment-node": "29.1.0",
"jest-junit": "^16.0.0",
"lerna": "^8.2.3",
"lint-staged": "^16.1.5",
"madge": "^7.0.0",
"prettier": "^3.6.2",
"reflect-metadata": "0.2.2",
"rimraf": "^5.0.10",
"rxjs": "^7.8.2",
"sinon": "^16.1.3",
"tar": "6.2.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
}
}