-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "spaceh",
"version": "0.1.0",
"description": "Personal blog by Harshit Prajapati",
"author": "Harshit Prajapati",
"private": true,
"homepage": "https://spaceh.io",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"prettify": "find src -name '*.js' | xargs prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,scss}": [
"prettier --write",
"./node_modules/.bin/eslint",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"classnames": "^2.2.6",
"disqus-react": "^1.0.5",
"emoji-mart": "^2.9.2",
"history": "^4.7.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-ga": "^2.5.7",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.2",
"react-syntax-highlighter": "^10.1.2",
"styled-components": "^4.1.3"
},
"devDependencies": {
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4"
}
}