-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.1 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
{
"name": "cra-scss-styleguidist",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.3.1",
"node-sass": "4.x",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@sanv/eslint-config-unicorn-typescript": "^2.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/react": "17.0.20",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"css-loader": "5.x",
"eslint": "^8.3.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-import-resolver-typescript": "2.2.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-unicorn": "38.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"pinst": "^2.1.6",
"postcss": "^8.3.11",
"postcss-scss": "^4.0.2",
"prettier": "^2.4.1",
"react-docgen": "^5.4.0",
"react-docgen-typescript": "^2.1.0",
"react-styleguidist": "^11.1.7",
"sass-loader": "7.x",
"style-loader": "2.x",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.0",
"ts-loader": "8.x",
"typescript": "4.4.2",
"url-loader": "^4.1.1",
"webpack": "4.44.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"styleguidist": "styleguidist server",
"tsc": "tsc --noEmit",
"lint:js": "eslint \"src/**/*.{ts,tsx}\"",
"lint:css": "stylelint \"src/**/*.scss\"",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E $1",
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.scss": [
"stylelint --fix"
],
"*.{js,html,md,json}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}