-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
{
"name": "ion-up",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ion",
"watch": "ng build --watch --configuration development",
"lint": "eslint .",
"lint:fix": "ng lint --fix",
"lint-staged": "lint-staged",
"prettier": "npx prettier --write .",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"storybook": "ng run ion:storybook",
"build-storybook": "ng run ion:build-storybook",
"chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN --exit-once-uploaded",
"prepare": "husky"
},
"private": true,
"engines": {
"node": "20.11.x"
},
"dependencies": {
"@angular/animations": "^18.0.2",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@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.3",
"@angular/compiler-cli": "^18.0.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/angular": "^8.1.6",
"@storybook/blocks": "^8.1.6",
"@storybook/test": "^8.1.6",
"@testing-library/angular": "^16.0.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"chromatic": "^11.5.3",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.0",
"lint-staged": "^15.2.7",
"ng-packagr": "^18.0.0",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.1.6",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0",
"prettier": "3.3.2"
}
}