-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
83 lines (83 loc) · 2.02 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
{
"name": "suites-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/suites-dev/suites.git"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
},
"bugs": {
"url": "https://github.com/suites-dev/suites.git"
},
"homepage": "https://suites.dev",
"contributors": [
{
"name": "Omer Morad",
"email": "omer.moradd@gmail.com"
}
],
"scripts": {
"build": "yarn lerna run build",
"test": "yarn lerna exec yarn test",
"lint": "yarn lerna run lint --parallel",
"prepare": "husky"
},
"dependencies": {
"@babel/traverse": "7.23.2",
"@manypkg/cli": "^0.21.4",
"@nestjs/common": "^10.3.9",
"@types/jest": "29.5.12",
"@types/node": "^20.12.12",
"@types/sinon": "^10.0.19",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"axios": "1.6.4",
"braces": "3.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"follow-redirects": "1.15.6",
"husky": "^8.0.3",
"ip": "1.1.9",
"jest": "^29.7.0",
"jest-environment-node": "29.1.0",
"jest-junit": "^16.0.0",
"lerna": "^7.3.1",
"lint-staged": "^14.0.1",
"madge": "^7.0.0",
"micromatch": "4.0.6",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"sinon": "^16.1.0",
"tar": "6.2.1",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"workspaces": [
"packages/*",
"packages/di/*",
"packages/doubles/*",
"packages/types/*"
],
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"jest-junit": {
"outputDirectory": "test-reports",
"ancestorSeparator": " › ",
"uniqueOutputName": "true",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}