-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.82 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
84
85
86
87
88
89
90
91
{
"name": "sdg",
"version": "1.0.0-next.45",
"repository": {
"type": "git",
"url": "git+https://github.com/infra-geo-ouverte/sdg.git"
},
"license": "LiLiQ-R",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages",
"projects/*"
],
"scripts": {
"postinstall": "git config core.hooksPath .config/git-hooks",
"ng": "ng",
"start": "npm run start -w demo",
"build.libs": "npm run build --workspace=packages --if-present",
"format": "npm run format --workspaces --if-present",
"format.fix": "npm run format.fix --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "ng test --no-watch --browsers=ChromeHeadless",
"test.watch": "ng test --browsers=ChromeHeadless",
"circular-deps": "madge --circular --extensions ts packages",
"publish": "node --import tsx scripts/src/publish.mts",
"pre-release": "node --import tsx scripts/src/pre-release.mts",
"release": "node --import tsx scripts/src/release.mts"
},
"dependencies": {
"@angular/animations": "^18.2.1",
"@angular/cdk": "^18.2.1",
"@angular/common": "^18.2.1",
"@angular/compiler": "^18.2.1",
"@angular/core": "^18.2.1",
"@angular/forms": "^18.2.1",
"@angular/material": "^18.2.1",
"@angular/platform-browser": "^18.2.1",
"@angular/platform-browser-dynamic": "^18.2.1",
"@angular/router": "^18.2.1",
"@igo2/common": "^18.0.0-next.5",
"@igo2/context": "^18.0.0-next.5",
"@igo2/core": "^18.0.0-next.5",
"@igo2/geo": "^18.0.0-next.5",
"@igo2/integration": "^18.0.0-next.5",
"@igo2/utils": "^18.0.0-next.5",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.1",
"@angular/cli": "^18.2.1",
"@angular/compiler-cli": "^18.2.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/format": "^19.3.0",
"@commitlint/types": "^19.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.11.0",
"angular-eslint": "18.3.0",
"eslint": "^9.9.0",
"execa": "^9.3.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"madge": "^8.0.0",
"ng-packagr": "^18.2.1",
"prettier": "^3.3.0",
"semantic-release": "^24.1.0",
"tsx": "^4.18.0",
"typescript": "~5.5.4",
"typescript-eslint": "8.1.0"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}