-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
{
"name": "@rich-97/compone",
"version": "1.0.2",
"description": "A React.js UI library fully customizable.",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rich-97/compone.git"
},
"keywords": [
"React",
"Components",
"UI"
],
"author": "Ricardo Moreno",
"license": "MIT",
"bugs": {
"url": "https://github.com/rich-97/compone/issues"
},
"homepage": "https://github.com/rich-97/compone#readme",
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "8.0.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-jsdoc": "26.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "4.2.5",
"lint-staged": "10.2.7",
"prettier": "2.0.5",
"typescript": "~3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"pre-push:": "npm test"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@types/styled-components": "^5.1.4",
"styled-components": "^5.2.1"
}
}