-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.71 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
{
"name": "style-app",
"version": "0.0.0",
"scripts": {
"ng": "nx --version",
"start": "nx serve --hmr",
"build": "nx exec -- yarn _build ",
"build:layout": "nx exec -- nx build layout",
"lint": "nx run-many --all --target=lint",
"_build": "npm run build:layout && nx build",
"deploy": "npm run ng deploy --base-href=/web-style/",
"upgrade": "nx migrate latest && nx migrate --run-migrations"
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.2",
"@angular/cdk": "18.2.13",
"@angular/common": "18.2.0",
"@angular/compiler": "18.2.0",
"@angular/core": "18.2.0",
"@angular/forms": "18.2.9",
"@angular/material": "18.2.0",
"@angular/platform-browser": "18.2.0",
"@angular/platform-browser-dynamic": "18.2.0",
"@angular/router": "18.2.0",
"animate.css": "^4.1.1",
"eva-icons": "^1.1.3",
"ngx-highlightjs": "^12.0.0",
"open-props": "^1.7.10",
"rxjs": "^7.5.7",
"tslib": "^2.6.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.2",
"@angular-devkit/core": "18.2.2",
"@angular-devkit/schematics": "18.1.2",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular/cli": "~18.1.0",
"@angular/compiler-cli": "18.1.2",
"@angular/language-service": "18.1.2",
"@kidwen/eslint-config-angular": "^18.0.0",
"@nx/angular": "20.3.0",
"@nx/workspace": "19.6.4",
"@schematics/angular": "18.1.2",
"@types/estree": "^1.0.0",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.8",
"@types/node": "22.9.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"angular-cli-ghpages": "^2.0.1",
"jasmine-core": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"ng-packagr": "18.2.1",
"nx": "19.6.5",
"protractor": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "5.5.4"
},
"engines": {
"node": ">=16.10.0",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"license": "MIT",
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/dist"
]
},
"build:layout": {
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}