-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.37 KB
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
{
"name": "react-eulexia",
"version": "1.2.0",
"description": "A component library aiming to help people with dyslexia.",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"test": "jest",
"build": "rollup --config",
"watch": "rollup --config --watch",
"prettier": "prettier \"**/*.{js,jsx,css,json}\"",
"prettier:format": "yarn prettier --write",
"lint": "eslint \"**/*.{js,jsx,css,json}\"",
"lint:fix": "yarn lint --fix",
"fix": "yarn prettier:format && yarn lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,jsx,css,json}": [
"yarn fix"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@testing-library/dom": "^7.29.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.11.1",
"builtin-modules": "^3.2.0",
"clsx": "^1.1.1",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.4",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropdown": "^1.9.0",
"react-test-renderer": "^17.0.1",
"react-tiny-fab": "^4.0.2",
"react-toggle": "^4.1.1",
"react-tooltip": "^4.2.10",
"rollup": "^2.13.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"styled-components": "^5.2.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"styled-components": "^5.2.1"
},
"keywords": [
"front-end",
"dyslexia",
"accessibility",
"react",
"components",
"customize",
"ui",
"user interface",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/gucollaco/react-eulexia.git"
},
"author": "Gustavo Collaço",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"prop-types": "^15.7.2",
"react-colorful": "^4.4.4",
"react-dropdown": "^1.9.0",
"react-range": "^1.8.3",
"react-speech-kit": "^3.0.1",
"react-tiny-fab": "^4.0.2",
"react-toggle": "^4.1.1",
"react-tooltip": "^4.2.10"
}
}