-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
{
"name": "loyolaorsino",
"version": "1.1.0",
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "npm run imageJson && ng serve",
"build": "npm run imageJson && ng build",
"watch": "npm run imageJson && ng build --watch --configuration development",
"imageJson": "node getImageJson.mjs",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"format:check": "prettier --check \"./**/*.{js,mjs,ts,jsx,tsx,json,css,scss,sass,html}\"",
"format:write": "prettier --write \"./**/*.{js,mjs,ts,jsx,tsx,json,css,scss,sass,html}\"",
"hooks:pre-commit": "lint-staged --verbose"
},
"dependencies": {
"@angular/animations": "^17.3.5",
"@angular/common": "^17.3.5",
"@angular/compiler": "^17.3.5",
"@angular/core": "^17.3.5",
"@angular/forms": "^17.3.5",
"@angular/platform-browser": "^17.3.5",
"@angular/platform-browser-dynamic": "^17.3.5",
"@angular/router": "^17.3.5",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"masonry-layout": "^4.2.2",
"ngx-masonry": "^14.0.1",
"rxjs": "^7.8.1",
"swiper": "^11.1.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.5",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "^17.3.5",
"@angular/compiler-cli": "^17.3.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
}
}