-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.39 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
{
"name": "faceit-tools",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"config": "ts-node ./scripts/setenv.ts",
"start": "npm run config -- --environment=dev && ng serve",
"build": "npm run config -- --environment=prod && ng build",
"run-docker": "chmod +x run-docker.sh && ./run-docker.sh",
"api": "php -S localhost:8000 -t public/api"
},
"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/material": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/fontawesome-svg-core": "~6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@ngrx/effects": "^18.0.2",
"@ngrx/store": "^18.0.2",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@types/node": "^22.2.0",
"detect-gpu": "^5.0.43",
"moment": "^2.30.1",
"ngx-moment": "^6.0.2",
"process": "^0.11.10",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"universal-dotenv": "^4.1.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^18.0.0",
"@angular-devkit/build-angular": "^18.1.4",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@ngrx/store-devtools": "^18.0.2",
"@schematics/angular": "^18.1.4",
"@types/jasmine": "~5.1.4",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.0",
"dotenv": "^16.4.5",
"jasmine-core": "~5.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"moment-locales-webpack-plugin": "^1.2.0",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"schematics-scss-migrate": "^2.3.17",
"tailwindcss": "^3.4.9",
"typescript": "~5.5.4",
"webpack-bundle-analyzer": "^4.10.2",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}