forked from avaya-dux/neo-react-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.18 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
{
"name": "@avaya/neo-react",
"version": "0.7.14",
"description": "This is the React version of the shared library called 'NEO' buit by Avaya",
"license": "SEE LICENSE IN LICENSE.md",
"repository": "github:avaya-dux/neo-react-library",
"homepage": "https://design.avayacloud.com/components/web/setup-web#InstallReactviaNodePackageManager",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"source": "src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"./avaya-neo-react.css": "./dist/avaya-neo-react.css",
".": {
"import": "./dist/avaya-neo-react.mjs",
"require": "./dist/avaya-neo-react.umd.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE.md",
"LICENSE-3rd-party.html"
],
"engines": {
"node": ">=v16.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not ie <= 11"
],
"scripts": {
"dev": "vite build --mode dev --watch",
"storybook": "start-storybook -p 6006",
"clean": "rm -rf coverage badges dist storybook-static cypress/screenshots cypress/videos jsdocs package *.tgz",
"format": "yarn prettier --write ./src --loglevel warn",
"lint": "eslint src",
"build": "tsc && vite build",
"build:storybook": "build-storybook",
"jsdocs": "jsdoc -c .jsdoc.json",
"jsdocs:verbose": "jsdoc -c .jsdoc.json --verbose",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:badges": "yarn test:coverage && jest-coverage-badges --output ./badges",
"test:cypress": "cypress run --component -b chrome",
"test:cypress-open": "cypress open --component -b chrome",
"github": "yarn && yarn lint && yarn build && yarn test && yarn test:cypress",
"netlify": "yarn && yarn build && yarn build:storybook",
"all": "yarn && yarn clean && yarn format && yarn lint && yarn build && yarn jsdocs && yarn build:storybook && yarn test:cypress && yarn test:badges && yarn pack"
},
"dependencies": {
"atomic-layout": "^0.16.2",
"loglevel": "^1.8.0",
"react-click-away-listener": "^2.2.2",
"react-focus-lock": "^2.9.1",
"react-node-to-string": "^0.1.0",
"styled-components": "^5.3.6"
},
"peerDependencies": {
"downshift": "6.1.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-roving-tabindex": "^3.2.0",
"react-table": "^7.8.0"
},
"devDependencies": {
"@avaya/neo": "^3.65.0",
"@babel/core": "^7.19.6",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.0",
"@vitest/ui": "^0.26.0",
"babel-loader": "^9.1.0",
"better-docs": "^2.7.2",
"cypress": "^12.0.0",
"cypress-real-events": "^1.7.2",
"downshift": "6.1.12",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.7",
"jest-axe": "7.0.0",
"jest-coverage-badges": "^1.1.2",
"jsdoc": "^4.0.0",
"jsdom": "^20.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-roving-tabindex": "^3.2.0",
"react-stopwatch": "^2.0.4",
"react-table": "^7.8.0",
"taffydb": "^2.7.3",
"typescript": "^4.8.4",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.6.6",
"vitest": "^0.26.0"
}
}