-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.29 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
{
"name": "vorkurt",
"version": "1.9.2",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"ng": "ng",
"start": "ng serve --port 4202 --open",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"push": "npx @open-sauced/conventional-commit",
"commit": "cz",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.0",
"@angular/cdk": "^12.2.11",
"@angular/common": "^13.1.0",
"@angular/compiler": "^13.1.1",
"@angular/compiler-cli": "^13.1.1",
"@angular/core": "^13.1.0",
"@angular/fire": "^7.4.1",
"@angular/forms": "^13.1.0",
"@angular/material": "^12.2.11",
"@angular/platform-browser": "^13.1.0",
"@angular/platform-browser-dynamic": "^13.1.0",
"@angular/router": "^13.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@ngtools/webpack": "^13.1.0",
"@tailwindcss/postcss7-compat": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"ag-grid-angular": "^26.1.0",
"ag-grid-community": "^26.1.0",
"ajv": "^8.8.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"firebase": "^9.6.1",
"leaflet": "^1.7.1",
"reset-css": "^5.0.1",
"rxfire": "^6.0.3",
"rxjs": "^6.6.0",
"tslib": "^2.3.1",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.0",
"@angular/cli": "^14.0.5",
"@angular/elements": "^13.1.0",
"@babel/core": "^7.15.8",
"@compodoc/compodoc": "^1.1.15",
"@cypress/schematic": "^1.5.1",
"@open-sauced/conventional-commit": "^1.0.1",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/angular": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@types/jasmine": "^3.10.1",
"@types/leaflet": "^1.7.5",
"@types/node": "^16.11.6",
"@webcomponents/custom-elements": "^1.5.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"concurrently": "^2.2.0",
"cypress": "8.7.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"jasmine-core": "^3.10.1",
"karma": "^6.3.6",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^12.1.4",
"lite-server": "^2.6.1",
"postcss": "^8.3.11",
"prettier": "2.5.1",
"typescript": "^4.5.3"
},
"husky": {
"hooks": {
"applypatch-msg": "echo \"[Husky] applypatch-msg\"",
"pre-applypatch": "echo \"[Husky] pre-applypatch\"",
"post-applypatch": "echo \"[Husky] post-applypatch\"",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write"
}
}