@keurig-web/one-header 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +36 -0
  3. package/dist/index.js +35378 -0
  4. package/package.json +63 -0
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@keurig-web/one-header",
3
+ "version": "0.1.3",
4
+ "private": false,
5
+ "description": "One Header react component",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git@github.com:hkrig/@keurig-web/one-header.git"
9
+ },
10
+ "license": "MIT",
11
+ "author": "hkrig",
12
+ "main": "dist/index.js",
13
+ "scripts": {
14
+ "build": "react-scripts build && rm -rf build/**/**/*.snap",
15
+ "copyNpmrc": "cp ~/.npmrc ./",
16
+ "format": "prettier --config .prettierrc.yaml --write \"**/*.{js,jsx}\"",
17
+ "lint": "eslint . --ignore-path .eslintignore --ext .js,.jsx",
18
+ "lint:fix": "npm run lint -- --fix",
19
+ "lint:staged": "eslint --ignore-path .gitignore --fix",
20
+ "start": "react-scripts start",
21
+ "test": "react-scripts test --env=jsdom",
22
+ "test:coverage": "npm test -- --coverage"
23
+ },
24
+ "husky": {
25
+ "hooks": {
26
+ "pre-commit": "lint-staged"
27
+ }
28
+ },
29
+ "lint-staged": {
30
+ "**/*.{js,jsx}": [
31
+ "npm run lint:staged"
32
+ ]
33
+ },
34
+ "jest": {
35
+ "resetMocks": false
36
+ },
37
+ "devDependencies": {
38
+ "@emotion/react": "11.10.5",
39
+ "@emotion/styled": "11.10.5",
40
+ "@react-native-async-storage/async-storage": "^1.17.11",
41
+ "classnames": "^2.3.2",
42
+ "debounce": "^1.2.1",
43
+ "isomorphic-dompurify": "^0.26.0",
44
+ "lodash": "^4.17.21",
45
+ "next-redux-wrapper": "~8.1.0",
46
+ "qs": "^6.11.0",
47
+ "react": "17.0.2",
48
+ "react-bootstrap": "^2.7.0",
49
+ "react-device-detect": "^2.2.2",
50
+ "react-hook-form": "^7.43.0",
51
+ "react-onclickoutside": "~6.12.2",
52
+ "react-redux": "~8.0.5",
53
+ "react-responsive": "9.0.2",
54
+ "react-slick": "^0.29.0",
55
+ "redux": "^4.2.1",
56
+ "redux-devtools-extension": "^2.13.9",
57
+ "redux-form": "~8.3.9",
58
+ "redux-persist": "^6.0.0",
59
+ "redux-saga": "^1.2.2",
60
+ "reselect": "^4.1.7",
61
+ "universal-cookie": "^4.0.4"
62
+ }
63
+ }