-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.9 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
{
"name": "angular-crud",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod:local": "npm run process-env && ng build --configuration=local",
"build:prod:live": "npm run process-env && ng build --configuration=live",
"process-env": "ts-node ./env.ts",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.1.4",
"@angular/cdk": "~12.1.4",
"@angular/common": "~12.1.4",
"@angular/compiler": "~12.1.4",
"@angular/core": "~12.1.4",
"@angular/fire": "~6.1.5",
"@angular/forms": "~12.1.4",
"@angular/material": "~12.1.4",
"@angular/material-moment-adapter": "~12.1.4",
"@angular/platform-browser": "~12.1.4",
"@angular/platform-browser-dynamic": "~12.1.4",
"@angular/router": "~12.1.4",
"@mdi/angular-material": "~5.9.55",
"@mdi/font": "~5.9.55",
"@ngrx/store": "~12.5.1",
"@ngrx/effects": "~12.5.1",
"@ngrx/entity": "~12.5.1",
"@ngrx/store-devtools": "~12.5.1",
"firebase": "~8.0",
"moment": "2.29.1",
"rxjs": "~6.6.0",
"tslib": "~2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "0.1201.3",
"@angular-devkit/build-angular": "~12.1.4",
"@angular-eslint/builder": "~12.2.2",
"@angular-eslint/eslint-plugin": "~12.2.2",
"@angular-eslint/eslint-plugin-template": "~12.2.2",
"@angular-eslint/schematics": "~12.2.2",
"@angular-eslint/template-parser": "~12.2.2",
"@angular/cli": "~12.1.4",
"@angular/compiler-cli": "~12.1.4",
"@commitlint/cli": "~12.1.4",
"@commitlint/config-conventional": "~12.1.4",
"@ngrx/schematics": "~12.2.0",
"@types/jasmine": "~3.6.0",
"@types/node": "~12.11.1",
"@typescript-eslint/eslint-plugin": "~4.23.0",
"@typescript-eslint/parser": "~4.23.0",
"commitizen": "~4.2.4",
"cz-conventional-changelog": "~3.3.0",
"eslint": "~7.26.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-prettier": "~3.4.0",
"firebase-tools": "~8.0.0 || ~9.0.0",
"fuzzy": "~0.1.3",
"husky": "~7.0.0",
"inquirer": "~6.2.2",
"inquirer-autocomplete-prompt": "~1.0.1",
"jasmine-core": "~3.7.0",
"jsonc-parser": "~3.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-edge-launcher": "~0.4.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.5.0",
"karma-junit-reporter": "~2.0.1",
"ng-mocks": "~12.3.1",
"open": "~7.0.3",
"prettier": "~2.3.2",
"standard-version": "~9.3.1",
"typescript": "~4.3.2",
"ts-node": "~10.4.0",
"colors": "^1.4.0",
"dotenv": "^10.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}