-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.18 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
{
"name": "energyview",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration development --open",
"start:prod": "ng serve --configuration production --open",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "npm run lint:ts && npm run lint:scss && npm run lint:html",
"lint-fix": "npm run lint:ts-fix && npm run lint:scss-fix && npm run lint:html",
"lint:ts": "eslint .",
"lint:ts-fix": "eslint . --fix",
"lint:scss": "npx stylelint **/*.scss",
"lint:scss-fix": "npx stylelint **/*.scss --fix",
"lint:html": "npx htmlhint --ignore=**/coverage/**",
"pre-commit": "npm run lint && npm run test"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^15.2.3",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/material": "^15.2.3",
"@angular/material-moment-adapter": "^15.2.3",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"angular-moment": "^1.3.0",
"moment": "^2.29.4",
"rxjs": "~7.8.0",
"stylelint-stylistic": "^0.4.3",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.10",
"@angular/cli": "~16.2.10",
"@angular/compiler-cli": "^16.2.12",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-spec-reporter": "^0.0.36",
"karma-viewport": "^1.0.9",
"stylelint": "^15.10.3",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "~4.9.4"
}
}