-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (65 loc) · 1.45 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
{
"name": "colorsandbox",
"version": "0.1.0",
"private": true,
"dependencies": {
"@allthings/elements": "4.2.6",
"color-contrast": "0.0.1",
"color-convert": "2.0.0",
"glamor": "2.20.40",
"neue": "1.0.0",
"react-ionicons": "3.0.1",
"redux-zero": "4.15.2"
},
"devDependencies": {
"@types/color-convert": "1.9.0",
"@types/jest": "26.0.14",
"@types/node": "16.4.0",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"husky": "6.0.0",
"lint-staged": "10.1.5",
"prettier": "1.19.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-scripts": "4.0.3",
"typescript": "4.3.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write",
"lint": "yarn lint:tsc && yarn lint:tslint",
"lint:tslint": "tslint -p tsconfig.json -t stylish",
"lint:tsc": "tsc -p tsconfig.json --noEmit --pretty"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn prettier",
"git add"
]
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"useTabs": false
}
}