-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.51 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
{
"name": "@fdograph/color-picker",
"homepage": "https://colors.silvamuller.rocks/",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.7",
"@types/tinycolor2": "^1.4.2",
"classnames": "^2.2.6",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-pick-color": "^1.0.0",
"react-scripts": "4.0.1",
"styled-components": "^5.2.1",
"tinycolor2": "^1.4.2",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"plugins": [
"react",
"prettier"
],
"rules": {
"camelcase": [
"error",
{
"properties": "always",
"ignoreDestructuring": true,
"ignoreImports": true
}
],
"no-debugger": "warn",
"no-unused-vars": "warn",
"max-len": "off",
"no-else-return": "off",
"no-plusplus": [
"warn",
{
"allowForLoopAfterthoughts": true
}
],
"operator-assignment": "off"
},
"overrides": [
{
"files": [
"**/*.tsx"
],
"rules": {
"react/prop-types": "off"
}
}
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}