-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "github-feed",
"version": "0.1.0",
"private": true,
"homepage": "https://dminones.github.io/github-feed",
"dependencies": {
"@material-ui/core": "^1.5.0",
"@material-ui/icons": "^2.0.2",
"cross-fetch": "^2.2.2",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"material-ui-search-bar": "^1.0.0-beta.9",
"mdi-material-ui": "^5.2.0",
"prettier": "^1.14.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"react-timeago": "^4.1.9",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"fetch-mock": "^6.5.2",
"redux-mock-store": "^1.5.3"
}
}