-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.11 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
{
"name": "ngx-photo-gallery",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "jest",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint 'projects/**/*.ts' --cache",
"eslint:fix": "eslint 'projects/**/*.ts' --fix --cache",
"stylelint": "stylelint 'projects/**/*.scss'",
"format:ts": "prettier --write 'projects/**/*.ts'",
"format:html": "prettier --write 'projects/**/*.html' --parser angular",
"format:scss": "prettier --write 'projects/**/*.scss' --parser scss && npm run stylelint -- --fix",
"format": "npm run format:html && npm run format:ts && npm run format:scss"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.6",
"@angular/common": "^18.0.6",
"@angular/compiler": "^18.0.6",
"@angular/core": "^18.0.6",
"@angular/forms": "^18.0.6",
"@angular/platform-browser": "^18.0.6",
"@angular/platform-browser-dynamic": "^18.0.6",
"@angular/router": "^18.0.6",
"photoswipe": "^4.1.3",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1800.7",
"@angular-devkit/build-angular": "^18.0.7",
"@angular-devkit/core": "^18.0.7",
"@angular-eslint/builder": "^18.1.0",
"@angular-eslint/eslint-plugin": "^18.1.0",
"@angular-eslint/eslint-plugin-template": "^18.1.0",
"@angular-eslint/schematics": "^18.1.0",
"@angular-eslint/template-parser": "^18.1.0",
"@angular/cli": "^18.0.7",
"@angular/compiler-cli": "^18.0.6",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.29.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.1",
"ng-packagr": "^18.0.0",
"postcss": "^8.4.20",
"prettier": "^3.0.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.1",
"ts-node": "~10.9.1",
"typescript": "^5.4.5"
}
}