-
-
Notifications
You must be signed in to change notification settings - Fork 561
/
package.json
101 lines (101 loc) · 3.31 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
99
100
101
{
"name": "jira-clone-angular-frontend",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --sourceMap=true",
"test": "ng test",
"test-cover": "ng test --code-coverage --source-map=false",
"lint": "ng lint",
"lint:fix": "ng lint --fix=true",
"e2e": "ng e2e",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"docs:html": "npx compodoc -p tsconfig.json src && npx serve documentation",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "STORYBOOK_GA_ID=UA-80363801-4 STORYBOOK_REACT_GA_OPTIONS={} npm run docs:json && build-storybook"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.2.4",
"@angular/cdk": "^13.2.4",
"@angular/common": "~13.2.4",
"@angular/compiler": "~13.2.4",
"@angular/core": "~13.2.4",
"@angular/forms": "~13.2.4",
"@angular/platform-browser": "~13.2.4",
"@angular/platform-browser-dynamic": "~13.2.4",
"@angular/router": "~13.2.4",
"@ant-design/icons-angular": "^13.1.0",
"@datorama/akita": "^7.1.1",
"@datorama/akita-ng-entity-service": "^7.0.0",
"@ngneat/content-loader": "^6.0.0",
"@ngneat/tailwind": "^7.0.3",
"@ngneat/until-destroy": "^8.0.3",
"@sentry/angular": "^6.18.1",
"@sentry/tracing": "^6.18.1",
"date-fns": "^2.14.0",
"karma-coverage": "^2.0.3",
"ng-zorro-antd": "^13.1.0",
"ngx-quill": "^16.1.2",
"quill": "^1.3.7",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "~13.2.5",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "~13.2.5",
"@angular/compiler-cli": "~13.2.4",
"@babel/core": "^7.12.10",
"@compodoc/compodoc": "^1.1.11",
"@datorama/akita-ng-router-store": "^7.0.0",
"@datorama/akita-ngdevtools": "^7.0.0",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-google-analytics": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/angular": "^6.1.11",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"babel-loader": "^8.2.2",
"codelyzer": "^6.0.0",
"eslint": "^8.2.0",
"husky": "^5.0.9",
"jasmine-core": "~4.0.1",
"jasmine-spec-reporter": "~6.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.5.4",
"nz-tslint-rules": "^0.901.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-scss": "^4.0.3",
"protractor": "~7.0.0",
"react-is": "^17.0.1",
"tailwindcss": "^3.0.12",
"ts-node": "~9.1.1",
"tslint": "~6.1.0",
"typescript": "~4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint:fix"
}
}