@bigbinary/neeto-tags-frontend 0.0.9

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.
Files changed (2) hide show
  1. package/dist/index.js +26 -0
  2. package/package.json +106 -0
package/package.json ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@bigbinary/neeto-tags-frontend",
3
+ "version": "0.0.9",
4
+ "description": "Manage tags across neeto products.",
5
+ "author": "BigBinary",
6
+ "license": "MIT",
7
+ "repository": "https://github.com/bigbinary/neeto_tags_frontend",
8
+ "main": "dist/index.js",
9
+ "engines": {
10
+ "node": ">=10"
11
+ },
12
+ "scripts": {
13
+ "build": "NODE_ENV=production webpack --mode production",
14
+ "build-preview": "NODE_ENV=production webpack --config webpack.example.config.js",
15
+ "start": "NODE_ENV=development webpack-dev-server --open --mode development --config webpack.dev.config.js",
16
+ "prepare": "husky install"
17
+ },
18
+ "lint-staged": {
19
+ "{src,example}/**/*.{js,jsx,json}": [
20
+ "prettier --write",
21
+ "eslint --fix"
22
+ ],
23
+ "{package.json,.eslintrc.js,.prettierrc.js}": [
24
+ "prettier --write",
25
+ "eslint --fix"
26
+ ],
27
+ ".eslint-rules/**/*": [
28
+ "prettier --write",
29
+ "eslint --fix"
30
+ ]
31
+ },
32
+ "devDependencies": {
33
+ "@babel/core": "^7.13.15",
34
+ "@babel/eslint-parser": "^7.17.0",
35
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
36
+ "@babel/preset-env": "^7.13.15",
37
+ "@babel/preset-react": "^7.13.13",
38
+ "@bigbinary/neeto-icons": "^1.8.30",
39
+ "@bigbinary/neetoui": "^3.3.6",
40
+ "@faker-js/faker": "^6.3.1",
41
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
42
+ "autoprefixer": "^9",
43
+ "babel-loader": "^8.2.2",
44
+ "classnames": "^2.3.1",
45
+ "css-loader": "^4.3.0",
46
+ "css-minimizer-webpack-plugin": "1.3.0",
47
+ "dayjs": "^1.11.0",
48
+ "eslint": "^8.12.0",
49
+ "eslint-config-prettier": "^8.5.0",
50
+ "eslint-plugin-cypress": "^2.12.1",
51
+ "eslint-plugin-import": "^2.25.4",
52
+ "eslint-plugin-jam3": "^0.2.3",
53
+ "eslint-plugin-json": "^3.1.0",
54
+ "eslint-plugin-prettier": "^4.0.0",
55
+ "eslint-plugin-promise": "^6.0.0",
56
+ "eslint-plugin-react": "^7.29.4",
57
+ "eslint-plugin-react-hooks": "4.2.1-alpha-13455d26d-20211104",
58
+ "eslint-plugin-unused-imports": "^2.0.0",
59
+ "file-loader": "^6.1.1",
60
+ "formik": "^2.2.9",
61
+ "html-loader": "^1.3.1",
62
+ "html-webpack-plugin": "^4.5.0",
63
+ "husky": "^7.0.0",
64
+ "mini-css-extract-plugin": "0.9.0",
65
+ "postcss": "^7",
66
+ "postcss-import": "^12.0.1",
67
+ "postcss-loader": "^4.0.3",
68
+ "postcss-preset-env": "^6.7.0",
69
+ "prettier": "^2.6.1",
70
+ "prop-types": "^15.8.1",
71
+ "ramda": "^0.27.1",
72
+ "react": "17.0.2",
73
+ "react-dom": "17.0.2",
74
+ "react-refresh": "^0.11.0",
75
+ "react-router-dom": "5.2.0",
76
+ "react-router-nav-prompt": "0.4.1",
77
+ "react-scripts": "4.0.3",
78
+ "react-select": "^5.2.1",
79
+ "react-toastify": "8.0.2",
80
+ "sass": "^1.26.11",
81
+ "sass-loader": "^10.0.2",
82
+ "style-loader": "^2.0.0",
83
+ "webpack": "^4.44.2",
84
+ "webpack-cli": "^3.3.12",
85
+ "webpack-dev-server": "3.11.0"
86
+ },
87
+ "peerDependencies": {
88
+ "@bigbinary/neeto-icons": "latest",
89
+ "@bigbinary/neetoui": "latest",
90
+ "classnames": "^2.3.1",
91
+ "dayjs": "^1.11.0",
92
+ "ramda": "^0.27.1",
93
+ "react": "17.0.2",
94
+ "react-dom": "17.0.2"
95
+ },
96
+ "files": [
97
+ "dist"
98
+ ],
99
+ "dependencies": {
100
+ "axios": "^0.27.2",
101
+ "i18next": "^21.8.5",
102
+ "react-i18next": "^11.16.9",
103
+ "react-query": "^3.39.1",
104
+ "yup": "^0.32.11"
105
+ }
106
+ }