-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.46 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
{
"name": "@indec/react-commons",
"version": "5.8.0",
"description": "Common reactjs components for apps",
"private": false,
"main": "index.js",
"scripts": {
"start": "start-storybook -p 6006",
"build": "NODE_ENV=production babel src --out-dir lib && cp package.json README.md LICENSE.md lib/",
"build-storybook": "build-storybook -o docs-build",
"test": "jest --config=jest.config.json",
"test:watch": "jest --config=jest.config.json --watch",
"eslint": "eslint ./src",
"validate": "npm run test && npm run eslint",
"prepare": "husky install"
},
"files": [
"components",
"constants",
"hooks",
"theme",
"utils",
"index.js",
"LICENSE.md",
"README.md",
"!components/**/*.test.js",
"!components/**/*.stories.js",
"!utils/__tests__"
],
"dependencies": {
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"framer-motion": "^9.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datepicker": "4.10.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.8.0",
"react-select": "^5.7.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.13",
"@chakra-ui/storybook-addon": "^4.0.16",
"@commitlint/cli": "^17.4.2",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/client-api": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.4.1",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^2.2.2"
},
"peerDependencies": {
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-router-dom": "^6.4.2",
"react-select": "^5.5.2",
"yup": "^0.32.11"
},
"keywords": [
"react",
"components",
"chakra",
"jest",
"node",
"storybook"
],
"repository": {
"type": "git",
"url": "https://github.com/indec-it/react-commons.git"
},
"bugs": {
"url": "https://github.com/indec-it/react-commons/issues"
},
"homepage": "https://github.com/indec-it/react-commons",
"author": "INDEC (https://github.com/indec-it)",
"license": "MIT"
}