-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.95 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.95 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
{
"name": "contractual-monorepo",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/contractual-dev/contractual.git"
},
"engines": {
"node": "^18.12.0 || >=20.0.0"
},
"bugs": {
"url": "https://github.com/contractual-dev/contractual.git"
},
"homepage": "https://contractual.dev",
"contributors": [
{
"name": "Omer Morad",
"email": "omer.moradd@gmail.com"
}
],
"scripts": {
"build": "pnpm -r run build",
"tester": "pnpm -r run test",
"lint": "pnpm -r run lint",
"prepare": "husky"
},
"dependencies": {
"@manypkg/cli": "^0.21.4",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "3.0.3",
"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",
"ip": "2.0.1",
"lerna": "^7.3.1",
"lint-staged": "^14.0.1",
"madge": "^7.0.0",
"micromatch": "4.0.8",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"tar": "6.2.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.1",
"typescript": "~5.7.2",
"vitest": "^3.0.3"
},
"workspaces": [
"packages/generators/*",
"packages/providers/*",
"packages/types/*",
"packages/*"
],
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"jest-junit": {
"outputDirectory": "test-reports",
"ancestorSeparator": " › ",
"uniqueOutputName": "true",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"packageManager": "pnpm@9.15.4",
"devDependencies": {
"husky": "^8.0.3"
}
}