@bigbinary/neeto-playwright-commons 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/index.cjs.js +7062 -0
- package/index.cjs.js.map +1 -0
- package/index.d.ts +103 -0
- package/index.js +7006 -0
- package/index.js.map +1 -0
- package/package.json +182 -0
package/package.json
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bigbinary/neeto-playwright-commons",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "A package encapsulating common playwright code across neeto projects.",
|
|
5
|
+
"repository": "git@github.com:bigbinary/neeto-playwright-commons.git",
|
|
6
|
+
"license": "apache-2.0",
|
|
7
|
+
"main": "./index.cjs.js",
|
|
8
|
+
"module": "./index.js",
|
|
9
|
+
"types": "./types.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prepare": "husky install",
|
|
12
|
+
"sync_with_wheel": "./.scripts/sync_with_wheel.sh",
|
|
13
|
+
"test": "TZ=UTC jest --detectOpenHandles",
|
|
14
|
+
"build": "NODE_ENV=production tsc && rollup -c rollup.config.js",
|
|
15
|
+
"watch": "rollup -c rollup.config.js --watch"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18.12",
|
|
19
|
+
"npm": ">=9",
|
|
20
|
+
"yarn": ">=1.22"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"index.*",
|
|
24
|
+
"index.d.ts"
|
|
25
|
+
],
|
|
26
|
+
"lint-staged": {
|
|
27
|
+
"**/*.{js,jsx,json,mjs}": [
|
|
28
|
+
".scripts/fix-lints.sh"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@babel/core": "^7.19.1",
|
|
33
|
+
"@babel/eslint-parser": "7.17.0",
|
|
34
|
+
"@babel/generator": "^7.20.7",
|
|
35
|
+
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
36
|
+
"@babel/preset-env": "7.17.10",
|
|
37
|
+
"@babel/preset-react": "7.16.7",
|
|
38
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
39
|
+
"@babel/runtime": "^7.19.0",
|
|
40
|
+
"@babel/types": "^7.20.7",
|
|
41
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
42
|
+
"@bigbinary/eslint-plugin-neeto": "^1.1.1",
|
|
43
|
+
"@bigbinary/neeto-audit-frontend": "1.0.8",
|
|
44
|
+
"@bigbinary/neeto-cist": "^1.0.5",
|
|
45
|
+
"@bigbinary/neeto-commons-frontend": "^2.1.5",
|
|
46
|
+
"@bigbinary/neeto-icons": "^1.9.15",
|
|
47
|
+
"@bigbinary/neeto-molecules": "^1.0.9",
|
|
48
|
+
"@bigbinary/neetoui": "^4.4.9",
|
|
49
|
+
"@faker-js/faker": "^8.2.0",
|
|
50
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
51
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
52
|
+
"@playwright/test": "^1.40.1",
|
|
53
|
+
"@rails/actioncable": "^7.0.3",
|
|
54
|
+
"@rollup/plugin-alias": "^3.1.9",
|
|
55
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
56
|
+
"@rollup/plugin-commonjs": "^22.0.0",
|
|
57
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
58
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
59
|
+
"@rollup/plugin-typescript": "^8.3.0",
|
|
60
|
+
"@storybook/addon-actions": "^6.5.16",
|
|
61
|
+
"@storybook/addon-essentials": "6.5.16",
|
|
62
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
63
|
+
"@storybook/builder-webpack5": "6.5.16",
|
|
64
|
+
"@storybook/manager-webpack5": "6.5.16",
|
|
65
|
+
"@storybook/preset-scss": "1.0.3",
|
|
66
|
+
"@storybook/react": "6.5.16",
|
|
67
|
+
"@svgr/rollup": "^6.2.1",
|
|
68
|
+
"@testing-library/jest-dom": "5.16.2",
|
|
69
|
+
"@testing-library/react": "^14.0.0",
|
|
70
|
+
"@testing-library/react-hooks": "^8.0.0",
|
|
71
|
+
"@testing-library/user-event": "13.5.0",
|
|
72
|
+
"antd": "4.24.3",
|
|
73
|
+
"autoprefixer": "^10.4.13",
|
|
74
|
+
"axios": "0.27.2",
|
|
75
|
+
"babel-jest": "27.0.6",
|
|
76
|
+
"babel-loader": "^8.2.5",
|
|
77
|
+
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
78
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
79
|
+
"babel-plugin-js-logger": "1.0.17",
|
|
80
|
+
"babel-plugin-macros": "3.1.0",
|
|
81
|
+
"babel-plugin-preval": "^5.1.0",
|
|
82
|
+
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
83
|
+
"babel-preset-react": "6.24.1",
|
|
84
|
+
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
85
|
+
"css-loader": "4.3.0",
|
|
86
|
+
"dayjs": "1.11.1",
|
|
87
|
+
"dompurify": "3.0.3",
|
|
88
|
+
"eslint": "8.14.0",
|
|
89
|
+
"eslint-config-prettier": "8.5.0",
|
|
90
|
+
"eslint-plugin-import": "2.26.0",
|
|
91
|
+
"eslint-plugin-jam3": "0.2.3",
|
|
92
|
+
"eslint-plugin-json": "3.1.0",
|
|
93
|
+
"eslint-plugin-prettier": "4.0.0",
|
|
94
|
+
"eslint-plugin-promise": "6.0.0",
|
|
95
|
+
"eslint-plugin-react": "7.29.4",
|
|
96
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
97
|
+
"eslint-plugin-security": "^1.7.1",
|
|
98
|
+
"eslint-plugin-sonarjs": "^0.21.0",
|
|
99
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
100
|
+
"eslint-plugin-xss": "^0.1.12",
|
|
101
|
+
"formik": "^2.2.9",
|
|
102
|
+
"husky": "^7.0.4",
|
|
103
|
+
"i18next": "22.5.1",
|
|
104
|
+
"i18next-browser-languagedetector": "^7.1.0",
|
|
105
|
+
"immer": "^10.0.2",
|
|
106
|
+
"jest": "27.5.1",
|
|
107
|
+
"js-logger": "^1.6.1",
|
|
108
|
+
"lint-staged": "^12.3.7",
|
|
109
|
+
"mousetrap": "^1.6.5",
|
|
110
|
+
"mousetrap-global-bind": "^1.1.0",
|
|
111
|
+
"nock": "^13.3.2",
|
|
112
|
+
"platform": "1.3.6",
|
|
113
|
+
"postcss": "^8.4.17",
|
|
114
|
+
"postcss-import": "^15.0.0",
|
|
115
|
+
"postcss-loader": "^7.0.1",
|
|
116
|
+
"postcss-preset-env": "7.8.2",
|
|
117
|
+
"prettier": "2.6.2",
|
|
118
|
+
"prettier-plugin-tailwindcss": "0.1.10",
|
|
119
|
+
"ramda": "^0.29.0",
|
|
120
|
+
"react": "^18.2.0",
|
|
121
|
+
"react-dom": "^18.2.0",
|
|
122
|
+
"react-helmet": "^6.1.0",
|
|
123
|
+
"react-i18next": "12.3.1",
|
|
124
|
+
"react-query": "^3.39.2",
|
|
125
|
+
"react-router-dom": "5.3.3",
|
|
126
|
+
"react-toastify": "8.0.2",
|
|
127
|
+
"remark-parse": "^10.0.1",
|
|
128
|
+
"rollup": "^2.76.0",
|
|
129
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
130
|
+
"rollup-plugin-cleaner": "^1.0.0",
|
|
131
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
132
|
+
"rollup-plugin-styles": "^4.0.0",
|
|
133
|
+
"rollup-plugin-typescript-paths": "^1.4.0",
|
|
134
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
135
|
+
"sass": "^1.58.1",
|
|
136
|
+
"sass-loader": "10.0.2",
|
|
137
|
+
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
138
|
+
"tslib": "^2.6.2",
|
|
139
|
+
"unified": "11.0.0",
|
|
140
|
+
"uuid": "^9.0.0",
|
|
141
|
+
"yup": "^0.32.11",
|
|
142
|
+
"zustand": "4.3.2"
|
|
143
|
+
},
|
|
144
|
+
"peerDependencies": {
|
|
145
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
146
|
+
"@bigbinary/neeto-cist": "latest",
|
|
147
|
+
"@bigbinary/neeto-commons-frontend": "latest",
|
|
148
|
+
"@bigbinary/neeto-icons": "latest",
|
|
149
|
+
"@bigbinary/neeto-molecules": "^latest",
|
|
150
|
+
"@bigbinary/neetoui": "latest",
|
|
151
|
+
"@faker-js/faker": "^8.2.0",
|
|
152
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
153
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
154
|
+
"@playwright/test": "^1.40.1",
|
|
155
|
+
"antd": "4.18.7",
|
|
156
|
+
"autoprefixer": "^10.4.13",
|
|
157
|
+
"axios": "^0.27.2",
|
|
158
|
+
"dayjs": "1.11.1",
|
|
159
|
+
"dotenv-webpack": "^8.0.1",
|
|
160
|
+
"formik": "^2.2.9",
|
|
161
|
+
"i18next": "^22.5.1",
|
|
162
|
+
"js-logger": "^1.6.1",
|
|
163
|
+
"lint-staged": "^12.3.7",
|
|
164
|
+
"qs": "^6.11.0",
|
|
165
|
+
"ramda": "^0.29.0",
|
|
166
|
+
"react": "18.2.0",
|
|
167
|
+
"react-helmet": "^6.1.0",
|
|
168
|
+
"react-i18next": "^12.3.1",
|
|
169
|
+
"react-query": "^3.39.2",
|
|
170
|
+
"react-router-dom": "5.3.3",
|
|
171
|
+
"react-toastify": "8.0.2",
|
|
172
|
+
"shakapacker": "^6.5.5",
|
|
173
|
+
"webpack": "^5.75.0"
|
|
174
|
+
},
|
|
175
|
+
"dependencies": {
|
|
176
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
177
|
+
"@types/ramda": "^0.29.9",
|
|
178
|
+
"glob": "^10.3.10",
|
|
179
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
180
|
+
"typescript": "^5.3.2"
|
|
181
|
+
}
|
|
182
|
+
}
|