-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.69 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
{
"name": "ngx-dummy",
"version": "0.0.9",
"license": "MIT",
"description": "A simple select component to use in Angular / Ionic projects .. (WIP) and sample app using it",
"keywords": [
"Select",
"Select component",
"Dropdown",
"Angular",
"Ionic",
"Typescript",
"Javascript",
"widget",
"expandable",
"dropdown",
"ui"
],
"private": false,
"author": {
"name": "Vladimir Ovsyukov",
"email": "ovsyukov@yandex.com",
"url": "https://www.ovsyukov.ru"
},
"engines": {
"node": ">=16.10.0 || >=18.9.0 || >=19.0.0",
"npm": ">=8.15.0 || >=9.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ngx-dummy/select-simple.git"
},
"bugs": {
"email": "ovsyukov@yandex.com",
"url": "https://github.com/ngx-dummy/select-simple/issues"
},
"homepage": "https://github.com/ngx-dummy/select-simple#README",
"scripts": {
"start": "nx serve select-sample --configuration development --open --port=8081",
"build": "nx build select-simple",
"build:prod": "nx build select-simple --configuration production",
"build:sample": "nx build select-sample --configuration production",
"build:docs": "nx build select-sample --configuration production --outputPath=docs",
"prepare:docs": "sh ./scripts/docs.sh",
"lint": "nx workspace-lint && nx lint",
"test:lib": "nx test select-simple",
"test:app": "nx test select-sample",
"test": "npm run test:lib",
"test:w": "npm run test:lib -- --watch",
"story:select": "nx run select-simple:storybook",
"ci:prepublish:npm": "sh ./scripts/ci-prepublish.sh",
"pretty-quick": "pretty-quick",
"prettier": "prettier --write packages/",
"release": "sh ./scripts/release.sh"
},
"dependencies": {
"@angular/animations": "~15.0.0",
"@angular/common": "~15.0.0",
"@angular/compiler": "~15.0.0",
"@angular/core": "~15.0.0",
"@angular/forms": "~15.0.0",
"@angular/platform-browser": "~15.0.0",
"@angular/platform-browser-dynamic": "~15.0.0",
"@angular/router": "~15.0.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.0.0",
"@angular-eslint/eslint-plugin": "~15.0.0",
"@angular-eslint/eslint-plugin-template": "~15.0.0",
"@angular-eslint/template-parser": "~15.0.0",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "~15.0.0",
"@angular/language-service": "~15.0.0",
"@nrwl/angular": "^15.3.0",
"@nrwl/cli": "15.2.1",
"@nrwl/cypress": "15.3.0",
"@nrwl/eslint-plugin-nx": "15.3.0",
"@nrwl/jest": "15.3.0",
"@nrwl/js": "15.2.1",
"@nrwl/linter": "15.3.0",
"@nrwl/storybook": "15.3.0",
"@nrwl/workspace": "15.2.1",
"@storybook/addon-essentials": "~6.5.9",
"@storybook/angular": "~6.5.9",
"@storybook/builder-webpack5": "~6.5.9",
"@storybook/core-server": "~6.5.9",
"@storybook/manager-webpack5": "~6.5.9",
"@types/jest": "28.1.1",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.4.0",
"cypress": "^11.0.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"html-webpack-plugin": "^5.5.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "~12.2.3",
"ng-packagr": "~15.0.0",
"nx": "15.2.1",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2",
"webpack": "^5.64.0",
"@storybook/test-runner": "^0.9.1",
"eslint-plugin-tailwindcss": "^3.7.1",
"prettier-plugin-organize-imports": "^3.2.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"pretty-quick": "^3.1.3"
}
}