-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.56 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
{
"name": "itlab-core-lib",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"storybook:react": "nx storybook react-ui-core",
"storybook:angular": "nx storybook angular-ui-core",
"app:react": "nx serve react-ui-core-app",
"component:react": "npx nx g @nrwl/react:component --project=react-ui-core",
"postinstall": "ngcc --properties es2020 browser module main",
"build-ng": "yarn run build-ng-ui-core",
"build-ng-ui-core": "nx run angular-ui-core:build:production",
"build-react": "yarn run build-react-ui-core",
"build-react-ui-core": "nx run react-ui-core:build:production",
"release": "yarn deploy-ng",
"deploy-ng": "yarn run deploy-ng-ui-core",
"deploy-ng-ui-core": "cd libs/angular/ui-core && auto shipit && cd ../../..",
"deploy-react": "yarn run deploy-react-ui-core",
"deploy-react-ui-core": "cd libs/react/ui-core && auto shipit && cd ../../..",
"test-ng-ui-core": "nx run angular-ui-core:test",
"test-react-ui-core": "nx run react-ui-core:test",
"docs-ui-core:json": "compodoc -p libs/angular/ui-core/tsconfig.json -e json -d libs/angular/ui-core/ --disablePrivate --disableProtected",
"serve-ng-ui-core-storybook": "yarn docs-ui-core:json && nx run angular-ui-core:storybook",
"build-storybook": "yarn build-ng-ui-core-storybook && yarn build-react-ui-core-storybook",
"build-ng-ui-core-storybook": "yarn docs-ui-core:json && nx run angular-ui-core:build-storybook:ci",
"build-react-ui-core-storybook": "yarn docs-ui-core:json && nx run react-ui-core:build-storybook:ci"
},
"private": true,
"dependencies": {
"@angular/animations": "14.0.1",
"@angular/common": "14.0.1",
"@angular/compiler": "14.0.1",
"@angular/core": "14.0.1",
"@angular/forms": "14.0.1",
"@angular/platform-browser": "14.0.1",
"@angular/platform-browser-dynamic": "14.0.1",
"@angular/router": "14.0.1",
"core-js": "^3.6.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-router-dom": "6.3.0",
"regenerator-runtime": "0.13.7",
"remark-gfm": "^3.0.1",
"remixicon": "2.5.0",
"rxjs": "7.5.5",
"tslib": "2.4.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "~14.0.0",
"@angular/compiler-cli": "14.0.1",
"@angular/language-service": "14.0.1",
"@auto-it/npm": "10.37.1",
"@babel/core": "7.12.13",
"@babel/plugin-proposal-decorators": "7.18.2",
"@babel/plugin-proposal-export-default-from": "7.17.12",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "7.17.12",
"@compodoc/compodoc": "1.1.19",
"@nrwl/angular": "14.2.2",
"@nrwl/cli": "14.2.2",
"@nrwl/cypress": "14.2.2",
"@nrwl/eslint-plugin-nx": "14.2.2",
"@nrwl/jest": "14.2.2",
"@nrwl/linter": "14.2.2",
"@nrwl/react": "^14.4.2",
"@nrwl/storybook": "14.2.2",
"@nrwl/web": "14.4.2",
"@nrwl/workspace": "14.2.2",
"@storybook/addon-docs": "6.5.6",
"@storybook/addon-essentials": "6.5.8",
"@storybook/angular": "6.5.8",
"@storybook/builder-webpack5": "6.5.8",
"@storybook/core-server": "6.5.8",
"@storybook/manager-webpack5": "6.5.8",
"@storybook/react": "~6.5.9",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.1",
"@types/node": "17.0.41",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"auto": "10.37.1",
"babel-jest": "27.5.1",
"babel-loader": "8.1.0",
"camelcase": "6.3.0",
"chromatic": "6.5.6",
"cypress": "10.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "27.5.1",
"jest-preset-angular": "11.1.2",
"ng-packagr": "14.0.1",
"nx": "14.6.1",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.7.1",
"postcss-url": "10.1.3",
"prettier": "2.6.2",
"react-test-renderer": "18.2.0",
"ts-jest": "27.1.4",
"ts-node": "~10.8.0",
"typescript": "4.7.3",
"url-loader": "^3.0.0",
"webpack": "5.73.0"
}
}