-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "tmikeschu",
"homepage": "https://tmikeschu.com/",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint-config-prettier": "^2.6.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.4.0",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.7.3"
},
"dependencies": {
"gh-pages": "^1.1.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "2.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"add-domain": "echo \"tmikeschu.com\" > build/CNAME",
"deploy": "npm run build && npm run add-domain && gh-pages -d build -b master",
"lint-staged": "$(npm bin)/lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --no-semi --write",
"eslint --fix",
"git add"
],
"src/**/*.css": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}