-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.25 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
64
65
66
67
68
69
70
71
{
"name": "pcts",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --silent --runInBand",
"format:all": "npm run lint:format && npm run prettier:lint:format",
"check-linting:all": "npm run lint && npm run prettier:lint",
"lint:format:specific": "eslint --fix --no-warn-ignored",
"lint:format": "eslint --fix .",
"lint": "eslint .",
"prettier:lint:format:specific": "prettier --write ",
"prettier:lint:format": "prettier --write .",
"prettier:lint": "prettier --check ."
},
"private": true,
"dependencies": {
"@angular/common": "^20.2.1",
"@angular/compiler": "^20.2.1",
"@angular/core": "^20.2.1",
"@angular/forms": "^20.2.1",
"@angular/platform-browser": "^20.2.1",
"@angular/router": "^20.2.1",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"@puzzleitc/puzzle-shell": "^5.1.0",
"bootstrap": "^5.3.7",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^20.1.1",
"@angular-eslint/eslint-plugin-template": "^20.2.0",
"@angular-eslint/schematics": "^20.1.1",
"@angular-eslint/template-parser": "^20.1.1",
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.2.1",
"@html-eslint/eslint-plugin": "^0.46.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/jasmine": "~5.1.0",
"@types/jest": "^30.0.0",
"angular-eslint": "^20.1.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.0.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.2.0",
"jasmine-core": "~5.10.0",
"jest": "^30.0.5",
"jest-preset-angular": "^15.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"typescript": "~5.9.0",
"typescript-eslint": "8.43.0"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
]
}
}