-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.75 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
111
112
113
114
{
"name": "weather-app",
"version": "1.0.1",
"homepage": "https://github.com/y-chen/weather-app#readme",
"license": "MIT",
"author": {
"name": "Yiyi Chen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/y-chen/weather-app"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "jest --config ./jest.config.json --no-cache",
"coverage": "rimraf ./.coverage && jest --config ./jest.config.json --no-cache --coverage",
"coverage:web": "npm run coverage && http-server ./.coverage/lcov-report -o",
"deploy:staging": "firebase use default && ng build --aot && firebase deploy",
"deploy:prod": "firebase use prod && ng build --prod && firebase deploy",
"eslint": "eslint \"src/**/*.{ts, js, json, html, scss}\"",
"eslint:fix": "npm run eslint --fix",
"prettier": "prettier \"**/*.{ts, js, json, html, scss}\"",
"prettier:write": "npm run prettier -- --write",
"check-up": "npm run prettier:write && npm run eslint:fix && npm run test && ng build",
"clean": "rimraf ./.coverage && rimraf ./.dist && rimraf ./.tmp && rimraf ./node_modules && npm ci",
"postinstall": "ng build --aot --prod"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.0.5",
"@angular/cdk": "^11.0.3",
"@angular/common": "~11.0.5",
"@angular/compiler": "~11.0.5",
"@angular/core": "~11.0.5",
"@angular/fire": "^6.1.4",
"@angular/forms": "~11.0.5",
"@angular/material": "^11.0.3",
"@angular/platform-browser": "~11.0.5",
"@angular/platform-browser-dynamic": "~11.0.5",
"@angular/router": "~11.0.5",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"case": "^1.6.3",
"compass-mixins": "^0.12.10",
"crypto-js": "^3.1.9-1",
"firebase": "^7.0 || ^8.0",
"flatted": "^3.1.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"oauth-1.0a": "^2.2.6",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": ">= 0.900 < 0.1200",
"@angular-devkit/build-angular": "^0.1100.5",
"@angular-eslint/builder": "0.8.0-beta.7",
"@angular-eslint/eslint-plugin": "0.8.0-beta.7",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.7",
"@angular-eslint/schematics": "^0.8.0-beta.7",
"@angular-eslint/template-parser": "^0.8.0-beta.7",
"@angular/cli": "~11.0.5",
"@angular/compiler-cli": "~11.0.5",
"@ngneat/spectator": "^6.1.2",
"@types/crypto-js": "^4.0.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.167",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.11.1",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"firebase-tools": "^9.1.1",
"fuzzy": "^0.1.3",
"http-server": "^0.12.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-mock-extended": "^1.0.10",
"jest-preset-angular": "^8.3.2",
"mocha": "^8.2.1",
"ng-mocks": "^11.3.1",
"ngx-translate-testing": "^5.0.0",
"open": "^7.0.3",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"ts-jest": "^26.4.4",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-angular": "^3.0.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.0.2"
}
}