-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 KB
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
{
"name": "csss-ng-frontend",
"version": "2.2.0",
"scripts": {
"ng": "ng",
"pre-build": "tsx scripts/app/sass-builder.ts",
"start": "npm run pre-build && ng serve",
"build": "npm run pre-build && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint ./src ./scripts --ext .ts --config eslint.config.mjs",
"format": "prettier ./src ./scripts --write",
"pre-commit": "npm run lint && npm run format"
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.7",
"@angular/common": "^21.2.9",
"@angular/compiler": "^21.2.9",
"@angular/core": "^21.2.9",
"@angular/forms": "^21.2.9",
"@angular/platform-browser": "^21.2.9",
"@angular/platform-browser-dynamic": "^21.2.9",
"@angular/router": "^21.2.9",
"@fortawesome/angular-fontawesome": "^4.0.0",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@omnedia/ngx-typewriter": "^4.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/cli": "^21.0.4",
"@angular/compiler-cli": "^21.2.9",
"@eslint/js": "^9.30.1",
"@types/jasmine": "~5.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.5",
"jasmine-core": "~5.6.0",
"jsdom": "^27.3.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tsx": "^4.20.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.0.16"
}
}