-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 4.21 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
{
"name": "algorea",
"scripts": {
"ng": "ng",
"serve": "ng serve",
"mock": "nodemon --exec \"ts-node -P ./tsconfig.mocks.json\" --watch ./mocks mocks/server.ts",
"generate-types-from-swagger": "node ./mocks/generate-types.js from-swagger",
"start": "concurrently --kill-others -n \"mock,serve\" -c \"yellow.bold,green.bold\" \"npm run mock\" \"npm run serve\"",
"build": "ng build core && npm run copyColor && npm run copyGeo",
"postBuild": "node purgecss.js dist",
"extract-i18n": "ng extract-i18n --output-path src/locale && ./node_modules/.bin/xliffmerge",
"copyColor": "xcopy \"projects\\core\\src\\lib\\colors.scss\" \"dist\\core\\\"",
"copyGeo": "xcopy \"projects\\core\\src\\lib\\geometry.scss\" \"dist\\core\\\"",
"injectDeployUrlForAssets": "find src -regex \".*\\.html\" -exec sed -i -E 's@(href|src)=\"images/(.*)\"@\\1=\"'$npm_config_url'images/\\2\"@g' {} + && find src -regex \".*\\.scss\" -exec sed -i -E 's@url\\(\"/images/(.*)\"\\)@url\\(\"'$npm_config_url'images/\\1\")@g' {} + && find src/index.html -exec sed -i -E 's@href=\"((.*).(woff2|ttf|webmanifest))\"@href=\"'$npm_config_url'\\1\"@g' {} + && find src/assets/site.webmanifest -exec sed -i -E 's@\"src\":\"images/([^\"]*)\"@\"src\":\"'$npm_config_url'images/\\1\"@g' {} +",
"test": "ng test",
"lint": "./node_modules/.bin/eslint src/ --ext .ts",
"e2e": "npx playwright test",
"release": "release-it"
},
"xliffmergeOptions": {
"srcDir": "src/locale",
"genDir": "src/locale",
"defaultLanguage": "en",
"languages": [
"fr"
],
"removeUnusedIds": true
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/cdk": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@ngrx/component": "^18.0.2",
"@ngrx/effects": "^18.0.2",
"@ngrx/operators": "^18.0.2",
"@ngrx/router-store": "^18.0.2",
"@ngrx/store": "^18.0.2",
"@ngrx/store-devtools": "^18.0.2",
"@phosphor-icons/web": "^2.0.3",
"@sentry/angular": "^8.33.1",
"fast-deep-equal": "^3.1.3",
"fp-ts": "^2.13.1",
"io-ts": "^2.2.20",
"jschannel": "^1.0.2",
"jwt-decode": "^3.1.2",
"ngx-scrollbar": "^15.1.2",
"primeicons": "^6.0.1",
"primeng": "^17.18.8",
"rxjs": "~7.8.1",
"tslib": "^2.3.1",
"zod": "^3.22.4",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular-devkit/core": "^18.1.4",
"@angular-eslint/builder": "^18.2.0",
"@angular-eslint/eslint-plugin": "^18.2.0",
"@angular-eslint/eslint-plugin-template": "^18.2.0",
"@angular-eslint/schematics": "^18.2.0",
"@angular-eslint/template-parser": "^18.2.0",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@angular/language-service": "^18.1.4",
"@angular/localize": "^18.1.4",
"@ngrx/eslint-plugin": "^18.0.2",
"@playwright/test": "^1.47.2",
"@sentry/cli": "^2.36.1",
"@stylistic/eslint-plugin-ts": "^2.6.2",
"@types/express": "^4.17.12",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/jschannel": "^1.0.6",
"@types/node": "^18.19.44",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"auto-changelog": "^2.4.0",
"body-parser": "^1.19.0",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint": "^8.53.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-rxjs": "^5.0.3",
"express": "^4.21.0",
"jasmine-core": "~5.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.1.0",
"ngx-i18nsupport": "^0.17.1",
"nodemon": "^2.0.7",
"purgecss": "^5.0.0",
"release-it": "^17.0.1",
"ts-node": "~7.0.0",
"typescript": "~5.5.4"
}
}