forked from lubkoKuzenko/ng-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.47 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
{
"name": "ng-start",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test:coverage": "jest --coverage --coverageDirectory=output/coverage/jest --runInBand",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "eslint --color -c .eslintrc --ext .ts .",
"lint:scss": "npx stylelint \"src/**/*.scss\" --syntax scss",
"e2e": "ng e2e",
"bundle:report": "ng build --configuration='production' --stats-json && webpack-bundle-analyzer dist/ng-start/stats.json",
"build:prod": "ng build --configuration='production'",
"compodoc": "./node_modules/.bin/compodoc --theme laravel -p src/tsconfig.app.json",
"format:write": "prettier \"./{src,e2e}/**/*.{ts,js,html,scss}\" --write",
"format:test": "prettier \"./{src,e2e}/**/*.{ts,js,html,scss}\" --list-different",
"clean:dist": "npx rimraf dist",
"clean:modules": "npx rimraf ./node_modules package-lock.json",
"clean:all": "npm run clean && npm run clean:modules",
"generate-new-module": "cd schematics && npm run build && schematics .:new-module-schematics --dry-run=false"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.2",
"@angular/cdk": "^16.0.1",
"@angular/common": "^16.0.2",
"@angular/compiler": "^16.0.2",
"@angular/core": "^16.0.2",
"@angular/forms": "^16.0.2",
"@angular/material": "^16.0.1",
"@angular/platform-browser": "^16.0.2",
"@angular/platform-browser-dynamic": "^16.0.2",
"@angular/router": "^16.0.2",
"@ngrx/component-store": "^16.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"core-js": "^3.30.2",
"moment": "^2.29.4",
"ng-for-track-by-property": "^16.0.1",
"ngx-json-viewer": "^3.2.1",
"rxjs": "^7.8.1",
"tslib": "^2.5.2",
"zone.js": "^0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^16.0.2",
"@angular-eslint/builder": "16.0.2",
"@angular-eslint/eslint-plugin": "16.0.2",
"@angular-eslint/eslint-plugin-template": "16.0.2",
"@angular-eslint/schematics": "16.0.2",
"@angular-eslint/template-parser": "16.0.2",
"@angular/cli": "^16.0.2",
"@angular/compiler-cli": "^16.0.2",
"@angular/language-service": "^16.0.2",
"@compodoc/compodoc": "^1.1.19",
"@tailwindcss/forms": "^0.5.3",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/eslint-plugin-tslint": "^5.59.7",
"@typescript-eslint/parser": "5.59.7",
"autoprefixer": "10.4.14",
"codelyzer": "^6.0.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^1.3.1",
"jest": "^29.5.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-localstorage-mock": "^2.4.26",
"jest-preset-angular": "^13.1.1",
"miragejs": "^0.1.47",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"protractor": "~7.0.0",
"stylelint": "^15.6.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-standard": "~33.0.0",
"stylelint-scss": "^5.0.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typescript": "5.0.4",
"webpack-bundle-analyzer": "^4.8.0"
}
}