-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathpackage.json
110 lines (110 loc) · 3.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "angular-folder-structure",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"dev": "ng serve --aot",
"build": "ng build",
"test": "npm run lint && ng test --configuration=test",
"lint": "npx ng lint angular-folder-structure",
"e2e": "ng e2e",
"watch": "ng test --configuration=test --browsers ChromeHeadless --watch",
"build:prod": "ng build --configuration production --vendor-chunk",
"clean": "rimraf ./dist/",
"format:write": "prettier {src,e2e,cypress}/**/*.{ts,json,md,scss} --write",
"format:test": "prettier {src,e2e,cypress}/**/*.{ts,json,md,scss} --list-different",
"analyze": "npm run clean && npm run build:prod -- --stats-json && webpack-bundle-analyzer ./dist/stats.json",
"compodoc": "compodoc -p src/tsconfig.app.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{src,e2e,cypress}/**/*.{ts,json,md,scss}": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^14.1.0",
"@angular/cdk": "^14.1.0",
"@angular/common": "^14.1.0",
"@angular/compiler": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/forms": "^14.1.0",
"@angular/localize": "^14.1.0",
"@angular/material": "^14.1.0",
"@angular/platform-browser": "^14.1.0",
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/router": "^14.1.0",
"@fortawesome/angular-fontawesome": "0.10.2",
"@fortawesome/fontawesome-free": "6.1.1",
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-brands-svg-icons": "6.1.1",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@testing-library/angular": "^12.1.0",
"@testing-library/dom": "^5.6.1",
"autoprefixer": "10.4.5",
"bootstrap": "^4.6.0",
"browser-detect": "^0.2.28",
"core-js": "^2.6.12",
"masonry-layout": "^4.2.2",
"ngx-masonry": "13.0.0",
"rxjs": "^7.5.6",
"rxjs-compat": "^6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.1.0",
"@angular-devkit/core": "^14.1.0",
"@angular-eslint/builder": "^14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "^14.1.0",
"@angular/compiler-cli": "^14.1.0",
"@angular/language-service": "^14.1.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^7.1.2",
"@compodoc/compodoc": "^1.1.14",
"@types/jasmine": "^3.9.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.24",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"codelyzer": "^6.0.2",
"eslint": "^8.18.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^1.1.3",
"jasmine-core": "4.3.0",
"jasmine-marbles": "^0.9.2",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-spec-reporter": "~0.0.32",
"lint-staged": "^7.3.0",
"prettier": "^1.19.1",
"protractor": "^7.0.0",
"rimraf": "^2.7.1",
"ts-node": "~5.0.1",
"typescript": "~4.6.4",
"webpack-bundle-analyzer": "^4.5.0"
}
}