-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 3.03 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
{
"name": "issue-forms-creator",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:watch": "ng test --watch",
"test:update": "ng test -u",
"ct:run": "npx cypress run --component",
"ct:open": "npx cypress open --component",
"lint": "ng lint",
"prettier:write": "prettier --write \"src/**/*.{js,json,css,scss,ts,html,component.html}\"",
"prettier:check": "prettier \"src/**/*.{js,json,css,scss,ts,html,component.html}\" --list-different",
"prepare": "husky install",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "ng run issue-forms-creator:storybook",
"build-storybook": "ng run issue-forms-creator:build-storybook"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.1602.0",
"@angular/animations": "^16.2.0",
"@angular/cdk": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/material": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@briebug/jest-schematic": "^4.0.0",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"marked": "^7.0.2",
"npm": "^9.8.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-builders/jest": "16.0.0",
"@angular-devkit/build-angular": "^16.2.0",
"@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.2.0",
"@angular/compiler-cli": "^16.2.0",
"@angular/elements": "^16.2.0",
"@babel/core": "^7.14.6",
"@compodoc/compodoc": "^1.1.14",
"@storybook/addon-actions": "^7.2.3",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/angular": "^7.2.3",
"@types/jasmine": "~4.3.5",
"@types/jest": "29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/marked": "^5.0.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.27.0",
"@webcomponents/custom-elements": "^1.5.1",
"babel-loader": "^8.2.2",
"cypress": "^12.17.3",
"eslint": "^8.26.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"jasmine-core": "~5.1.0",
"jest": "29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-preset-angular": "^13.1.1",
"karma-coverage": "~2.2.1",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.2.3",
"typescript": "~5.1.3"
},
"lint-staged": {
"src/**/*.ts": "eslint --cache --fix",
"src/**/*.{js,json,css,scss,ts,html,component.html}": "prettier --write"
}
}