-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
89 lines (89 loc) · 2.67 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
{
"name": "svg-icons",
"version": "0.0.0",
"scripts": {
"postinstall": "ngcc",
"start": "ng serve",
"test:generator": "npm run test --prefix svg-generator",
"run:generator": "node svg-generator/index.js",
"build:generator": "npm run build --prefix svg-generator",
"hooks:pre-commit": "node hooks/pre-commit.js && lint-staged",
"commit": "git-cz",
"build:lib": "ng build @ngneat/svg-icon --configuration production && cp -r README.md dist/ngneat/svg-icon",
"test:lib": "ng test @ngneat/svg-icon",
"release": "cd projects/ngneat/svg-icon && standard-version --infile ../../../CHANGELOG.md",
"test:lib:headless": "cross-env CI=true npm run test:lib"
},
"private": true,
"svgGenerator": {
"srcPath": "./src/assets/svg",
"outputPath": "./src/app/svg",
"svgoConfig": {
"plugins": [
"cleanupAttrs",
"removeDimensions"
]
}
},
"dependencies": {
"@angular/animations": "^15.2.8",
"@angular/common": "^15.2.8",
"@angular/compiler": "^15.2.8",
"@angular/core": "^15.2.8",
"@angular/forms": "^15.2.8",
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@ngneat/lib": "^1.0.6",
"@ngneat/tailwind": "^6.0.3",
"rxjs": "^7.5.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "15.0.0",
"@angular-devkit/build-angular": "^15.2.7",
"@angular/cli": "^15.2.7",
"@angular/compiler-cli": "^15.2.8",
"@commitlint/cli": "17.2.0",
"@commitlint/config-angular": "17.2.0",
"@commitlint/config-conventional": "^12.0.1",
"@ngneat/spectator": "14.0.0",
"@types/jasmine": "4.3.0",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.11.8",
"cosmiconfig": "7.0.1",
"cross-env": "7.0.3",
"git-cz": "^4.7.6",
"husky": "^5.1.1",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^10.5.4",
"ng-packagr": "^15.2.2",
"postcss": "8.4.21",
"postcss-import": "14.0.0",
"postcss-loader": "5.0.0",
"postcss-scss": "3.0.4",
"prettier": "2.7.1",
"standard-version": "^9.1.1",
"tailwindcss": "2.0.3",
"ts-node": "~9.1.1",
"tslint": "~6.1.0",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write"
]
}
}