-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
102 lines (102 loc) · 3.71 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
{
"name": "ng-new-app",
"version": "1.3.0",
"description": "Angular 14 boilerplate that comes with Material-UI, Tailwind3, Purgecss, Jest & Cypress Support, Optimal project structure, Interceptor with already some code, sourcemap analyzer tools, all pre-configured and much more...",
"homepage": "https://github.com/sardapv/angular-material-starter-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sardapv/angular-material-starter-template.git"
},
"keywords": [
"angular",
"boilerplate",
"starter-kit",
"material-template",
"tailwind-template",
"husky",
"code-coverage",
"light-house"
],
"author": "Pranav Sarda <[email protected]>",
"license": "MIT",
"scripts": {
"ng": "ng",
"prepare": "husky install",
"start": "ng serve",
"build": "ng build --base-href ./ ",
"watch": "ng build --watch --configuration development",
"prod-test": "npm run final-build && serve -s dist/",
"source": "ng build --sourceMap=true --namedChunks=true && ./node_modules/.bin/source-map-explorer dist/*.js",
"webpack-analyze": "ng build --sourceMap=true --namedChunks=true --stats-json && ./node_modules/.bin/webpack-bundle-analyzer dist/stats.json",
"purgecss": "node run-purgecss.js",
"final-build": "npm run build && npm run purgecss",
"test": "ng test",
"test:coverage": "ng test --coverage",
"lint": "ng lint",
"e2e": "ng run ng-new-app:cypress-open",
"e2e:ci": "ng run ng-new-app:cypress-run",
"prettier": "prettier --config ./.prettierrc --write \"src/{app,environments}/**/*{.ts,.html,.scss,.json}\"",
"prettier:verify": "prettier --config ./.prettierrc --check \"src/{app,environments}/**/*{.ts,.html,.scss,.json}\"",
"prettier:staged": "pretty-quick --staged"
},
"bin": {
"ng-new-app": "./bin/generate-app.js"
},
"dependencies": {
"@angular/animations": "^14.1.0",
"@angular/cdk": "^14.1.0",
"@angular/common": "^14.1.0",
"@angular/compiler": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/forms": "^14.1.0",
"@angular/material": "^14.1.0",
"@angular/platform-browser": "^14.1.0",
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/router": "^14.1.0",
"@cypress/schematic": "^2.0.0",
"@ngx-loading-bar/core": "^5.1.1",
"@ngx-loading-bar/router": "^5.1.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "14.0.0",
"@angular-devkit/build-angular": "~14.1.0",
"@angular-eslint/builder": "~14.0.2",
"@angular-eslint/eslint-plugin": "~14.0.2",
"@angular-eslint/eslint-plugin-template": "~14.0.2",
"@angular-eslint/schematics": "~14.0.2",
"@angular-eslint/template-parser": "~14.0.2",
"@angular/cli": "~14.1.0",
"@angular/compiler-cli": "~14.1.0",
"@briebug/jest-schematic": "^4.0.0",
"@cypress/code-coverage": "^3.10.0",
"@schematics/angular": "^14.1.0",
"@types/jasmine": "~4.0.3",
"@types/jest": "28.1.6",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"autoprefixer": "^10.4.8",
"cypress": "10.3.1",
"dayjs": "^1.11.4",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "28.1.3",
"jest-preset-angular": "^12.2.0",
"ngx-build-plus": "^14.0.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"purgecss": "^4.1.3",
"rimraf": "^3.0.2",
"serve": "^14.0.1",
"source-map-explorer": "^2.5.2",
"tailwindcss": "^3.1.7",
"typescript": "~4.7.4",
"webpack-bundle-analyzer": "^4.5.0"
}
}