-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
111 lines (111 loc) · 4.17 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "igo",
"version": "17.0.1",
"description": "Infrastructure géomatique ouverte",
"author": "Communauté IGO",
"repository": {
"url": "https://github.com/infra-geo-ouverte/igo2"
},
"license": "LiLiQ-R",
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-pwa": "ng build --configuration pwa --output-path ./dist/pwa && npm run serve.pwa",
"serve.prod": "http-server ./dist/igo2/ --port 4201 --no-browser",
"serve.pwa": "http-server ./dist/pwa/ --port 4201 --no-browser",
"serve.doc": "compodoc -s --port 4220",
"serve.coverage": "http-server ./coverage/ --port=4210 --no-browser",
"link.start": "ng serve --configuration developpement-link",
"link.build": "ng build --configuration production-link",
"build": "ng build",
"build.prod": "ng build --configuration production",
"build.github": "ng build --configuration=github --output-path ./dist/ghpages --base-href /igo2/",
"build.pwa": "ng build --configuration pwa --output-path ./dist/pwa",
"build.doc": "compodoc -p src/tsconfig.app.json",
"build.coverage": "ng test --code-coverage --watch=false",
"lint": "ng lint",
"lint.fix": "ng lint --fix",
"format": "prettier --write ./src/**/*.{ts,js,html,scss,css,json}",
"e2e": "ng run igo2:e2e:production",
"e2e.local": "ng run igo2:e2e:local",
"test": "ng test --watch=false --browsers=ChromeHeadless",
"test.watch": "ng test",
"doc": "compodoc -p src/tsconfig.app.json -s --port 4220",
"coverage": "npm run build.coverage && npm run serve.coverage",
"i18n": "ng2-translate-extract --dir ./src --output ./src/assets/locale/ --format=json --clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog-current": "conventional-changelog -p angular -r 2",
"preversion": "npm run test && npm run e2e",
"version": "npm run release",
"postversion": "npm run changelog && git add -u && git push && git push --tags",
"release": "ts-node scripts/src/release.ts"
},
"dependencies": {
"@angular/animations": "^17.0.7",
"@angular/cdk": "^17.0.4",
"@angular/common": "^17.0.7",
"@angular/compiler": "^17.0.7",
"@angular/core": "^17.0.7",
"@angular/forms": "^17.0.7",
"@angular/material": "^17.0.4",
"@angular/platform-browser": "^17.0.7",
"@angular/platform-browser-dynamic": "^17.0.7",
"@angular/router": "^17.0.7",
"@angular/service-worker": "^17.0.7",
"@igo2/auth": "^17.0.0",
"@igo2/common": "^17.0.0",
"@igo2/context": "^17.0.0",
"@igo2/core": "^17.0.0",
"@igo2/geo": "^17.0.0",
"@igo2/integration": "^17.0.0",
"@igo2/utils": "^17.0.0",
"core-js": "^3.32.2",
"hammerjs": "^2.0.8",
"ol": "9.1.0",
"rxjs": "^7.8.0",
"tslib": "^2.6.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.7",
"@angular-eslint/builder": "^17.1.1",
"@angular-eslint/eslint-plugin": "^17.1.1",
"@angular-eslint/eslint-plugin-template": "^17.1.1",
"@angular-eslint/schematics": "^17.1.1",
"@angular-eslint/template-parser": "^17.1.1",
"@angular/cli": "^17.0.7",
"@angular/compiler-cli": "^17.0.7",
"@cypress/schematic": "^2.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/geojson": "^7946.0.10",
"@types/hammerjs": "^2.0.41",
"@types/jasmine": "^4.3.5",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@swc/core": "1.3.100",
"@swc/wasm": "1.3.100",
"angular-cli-ghpages": "^1.0.3",
"conventional-changelog-cli": "^4.1.0",
"cypress": "^13.2.0",
"eslint": "^8.53.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-unused-imports": "^3.0.0",
"execa": "^8.0.1",
"http-server": "^14.1.0",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "~5.2.2"
}
}