-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.22 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
{
"name": "ng-kitsune",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "ng lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"storybook": "ng run ng-kitsune:storybook",
"build-storybook": "ng run ng-kitsune:build-storybook"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "~16.1.4",
"@angular/compiler-cli": "^16.1.0",
"@compodoc/compodoc": "^1.1.21",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/angular": "^7.1.0",
"@storybook/blocks": "^7.1.0",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.44.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-preset-angular": "^13.1.1",
"prettier": "3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.1.0",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}