-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.94 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 2.94 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
117
118
119
120
121
122
123
{
"name": "codingmr.github.io",
"version": "0.3.4",
"private": true,
"homepage": "http://codingmr.github.io",
"scripts": {
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"eject": "react-scripts eject",
"lint-check": "eslint .",
"lint-fix": "eslint . --fix",
"prettier-check": "prettier --list-different src/**/*.js && prettier --check src/**/*.js",
"prettier-fix": "prettier --write src/**/*.js && prettier --check src/**/*.js",
"start": "react-scripts start",
"style-check": "stylelint src/**/*.css",
"style-fix": "stylelint src/**/*.css --fix",
"test": "react-scripts test --env=jsdom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.css": "stylelint --cache --fix",
"*.js": "eslint --cache --fix",
"*.{css,js,json,md,yml}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 6,
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
},
"plugins": [
"jsx-a11y",
"react"
],
"extends": [
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"eslint:recommended"
],
"rules": {
"no-return-assign": [
"off"
],
"react/jsx-filename-extension": [
"off"
]
},
"ignorePatterns": [
"build"
]
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"bootstrap": "^4.4.1",
"core-js": "^3.6.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.9.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.4.1",
"react-scroll": "^1.7.16",
"reactstrap": "^6.5.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
"ajv": "^6.12.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-stylelint": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react-dev-utils": "^11.0.4",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0"
}
}