-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cortextaidevkit-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "cross-env NODE_ENV=local run-p mock:server \"ng serve\"",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "run-p lint:ng lint:styles lint:html",
"lint:styles": "stylelint --config .lint/.stylelintrc.json src/app/**/*.scss",
"lint:html": "htmlhint --config .lint/.htmlhintrc src/app/**/*.html",
"lint:ng": "ng lint",
"format:prettier": "lint-staged",
"format:all": "run-s format:prettier lint",
"prepare": "husky",
"mock:server": "json-server --watch mock/db.json --port 3000"
},
"private": true,
"packageManager": "yarn@1.22.22",
"dependencies": {
"@angular/common": "^21.2.14",
"@angular/compiler": "^21.2.14",
"@angular/core": "^21.2.14",
"@angular/forms": "^21.2.14",
"@angular/platform-browser": "^21.2.14",
"@angular/router": "^21.2.14",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"ngx-logger": "^5.0.12",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/builder": "21.4.0",
"@angular/build": "^21.2.12",
"@angular/cli": "^21.2.12",
"@angular/compiler-cli": "^21.2.14",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@ngx-env/builder": "^21.0.1",
"@tailwindcss/postcss": "^4",
"angular-eslint": "21.4.0",
"cross-env": "^10.1.0",
"eslint": "^10.4.0",
"htmlhint": "^1.9.2",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"json-server": "^1.0.0-beta.15",
"lint-staged": "^17.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3.8.3",
"stylelint": "^17.12.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-scss": "^7.1.1",
"tailwindcss": "^4",
"typescript": "~6.0.3",
"typescript-eslint": "8.60.0",
"vitest": "^4.1.7"
}
}