-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 3.43 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
{
"name": "angular-library-starter",
"version": "1.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve -o",
"build": "npm run build:library && npm run build:showcase",
"build:library": "ng build --project=angularLibraryStarter && npm run copy-readme",
"build:showcase": "ng build --project=angularLibraryStarterShowcase --base-href ./",
"bump-version": "rjp package.json version $VERSION",
"copy-readme": "copyfiles README.md dist/angular-library-starter",
"customize": "node tools/customization.mjs",
"lint": "eslint projects/**/*.ts",
"lint-staged": "lint-staged --allow-empty",
"commitlint": "commitlint --edit",
"watch:library": "jest --config projects/angular-library-starter/jest.config.js --watch",
"test:library": "jest --config projects/angular-library-starter/jest.config.js",
"test:showcase": "jest --config projects/angular-library-starter-showcase/jest.config.js",
"coverage:library": "jest --config projects/angular-library-starter/jest.config.js --coverage --coverageDirectory=../../.coverage",
"format:test": "prettier --list-different 'projects/**/*.{ts,html}'",
"format:write": "prettier --write 'projects/**/*.{ts,html}'",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.4",
"@angular/cdk": "^18.0.4",
"@angular/common": "^18.0.4",
"@angular/compiler": "^18.0.4",
"@angular/core": "^18.0.4",
"@angular/forms": "^18.0.4",
"@angular/platform-browser": "^18.0.4",
"@angular/platform-browser-dynamic": "^18.0.4",
"@angular/router": "^18.0.4",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.5",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@angular/cli": "~18.0.5",
"@angular/compiler-cli": "^18.0.4",
"@briebug/jest-schematic": "^5.0.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@types/jest": "29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.13",
"chalk": "^5.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"inquirer": "^5.2.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.1",
"lint-staged": "^13.1.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"ng-packagr": "^18.0.0",
"ngx-highlightjs": "^7.0.1",
"ora": "^6.1.2",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"replace-in-file": "^6.3.5",
"replace-json-property": "^1.8.0",
"semantic-release": "^19.0.5",
"tailwindcss": "^3.2.4",
"typescript": "^5.4.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
100
]
}
},
"lint-staged": {
"*.{ts,js,html,css,scss,less,md,json}": "prettier --write"
}
}