-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "vernite",
"version": "1.1.1",
"scripts": {
"@------ WORKFLOW SCRIPTS --------": "",
"postinstall": "husky install",
"@-------- MAIN SCRIPTS ----------": "",
"start": "yarn serve",
"serve": "ng serve",
"build": "yarn print \"You need to choose configuration: 'dev', 'prod' and type command like 'yarn build:dev'\" --color=yellow",
"build:prod": "ng build --configuration=production",
"build:dev": "ng build --configuration=dev",
"lint": "ng lint",
"analyze:serve": "webpack-bundle-analyzer dist/vernite/en-US/stats.json",
"analyze:build": "yarn analyze:serve -m static -O -r documentation/report/index.html",
"unit:serve": "yarn print \"You need to choose browser: 'firefox', 'chrome' and type command like 'yarn unit:serve:chrome'\" --color=yellow",
"unit:serve:firefox": "concurrently -r -k \"http-server --port=9877 ./coverage/vernite\" \"ng test\"",
"unit:serve:chrome": "concurrently -r -k \"http-server --port=9877 ./coverage/vernite\" \"ng test --browsers=Chrome\"",
"unit:build": "ng test --watch=false --code-coverage --browsers=ChromeHeadless",
"unit:coverage": "yarn unit:build",
"e2e:serve": "ng run vernite:e2e",
"e2e:build": "ng run vernite:e2e-ci",
"e2e:coverage": "npx nyc report --reporter=lcov --reporter=text-summary",
"docs:serve": "cross-env STORYBOOK_ENVIRONMENT=prod concurrently -r -k \"yarn compodoc:serve -t\" \"start-storybook -p 6006\"",
"docs:build": "yarn print \"You need to choose configuration: 'dev', 'prod' and type command like 'yarn docs:build:dev'\" --color=yellow",
"docs:build:dev": "cross-env STORYBOOK_ENVIRONMENT=dev yarn storybook:build",
"docs:build:prod": "cross-env STORYBOOK_ENVIRONMENT=$npm_package_version yarn storybook:build",
"docs:coverage": "yarn compodoc:build",
"audit:build": "yarn audit --json | yarn yarn-audit-html --output documentation/audit/index.html",
"i18n:extract": "ng extract-i18n --output-path=src/locales",
"i18n:coverage": "node tools/i18n-report.mjs",
"@-------- UTILITY SCRIPTS ----------": "",
"compodoc:serve:html": "compodoc -p ./tsconfig.doc.json -w -s",
"compodoc:serve": "compodoc -p ./tsconfig.doc.json -e json -w -s",
"compodoc:build": "compodoc -p ./tsconfig.doc.json -e json -d .",
"storybook:serve": "start-storybook -p 6006",
"storybook:build": "yarn compodoc:build && build-storybook -o documentation",
"badges:build": "node tools/badge-generator.js",
"print": "node tools/print.mjs",
"version": "cross-env VERSION=$npm_package_version node -p -e \"process.env.VERSION\""
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.12",
"@angular/cdk": "^14.2.7",
"@angular/cdk-experimental": "14.2.7",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/router": "^14.2.12",
"@fortawesome/angular-fontawesome": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-brands-svg-icons": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@ngneat/reactive-forms": "4.1.0",
"@ngneat/until-destroy": "^9.2.1",
"@tabuckner/material-dayjs-adapter": "^1.1.0",
"@vernite/protobuf": "https://github.com/Vernite/protobuf.git#build-typescript",
"color": "^4.2.3",
"concurrently": "^7.1.0",
"dayjs": "^1.11.2",
"emoji-js": "^3.7.0",
"google-protobuf": "^3.21.2",
"highlight.js": "^11.5.1",
"lodash-es": "^4.17.21",
"marked": "^4.0.17",
"monaco-editor": "^0.34.1",
"ng-recaptcha": "9.0.0",
"ngx-monaco-editor-v2": "^14.0.4",
"rxjs": "~7.5.0",
"rxjs-observe": "^2.1.6",
"tslib": "^2.3.0",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "14.1.0",
"@angular-devkit/build-angular": "^14.2.10",
"@angular-eslint/builder": "14.4.0",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "^14.2.10",
"@angular/compiler-cli": "^14.2.12",
"@angular/localize": "^14.2.12",
"@babel/core": "^7.18.6",
"@compodoc/compodoc": "^1.1.19",
"@cypress/code-coverage": "^3.10.0",
"@cypress/schematic": "^1.6.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@ngneat/eslint-plugin-reactive-forms": "^4.0.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-storysource": "^6.5.10",
"@storybook/addon-toolbars": "^6.5.10",
"@storybook/angular": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/color": "^3.0.3",
"@types/emoji-js": "^3.5.0",
"@types/google-protobuf": "^3.15.6",
"@types/jasmine": "^4.0.3",
"@types/lodash-es": "^4.17.6",
"@types/marked": "^4.0.3",
"@types/mocha": "^9.1.1",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.5",
"badge-maker": "^3.3.1",
"chalk": "^5.0.1",
"cross-env": "^7.0.3",
"cypress": "12.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-unused-imports": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.0",
"husky": "^8.0.1",
"istanbul-lib-coverage": "^3.2.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"karma-spec-reporter": "^0.0.34",
"karma-structured-json-reporter": "^1.0.1",
"lcov-result-merger": "^4.0.0",
"nyc": "^15.1.0",
"postcss": "^8.4.12",
"prettier": "^2.6.0",
"shallow-render": "14.2.2",
"storybook-dark-mode": "^1.1.0",
"storybook-tailwind-dark-mode": "^1.0.15",
"stylelint": "^14.6.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.0.23",
"typescript": "~4.8.4",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-inject-plugin": "^1.5.5",
"yarn-audit-fix": "^9.3.7",
"yarn-audit-html": "^4.0.0"
}
}