-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "gh-pages-monkey",
"homepage": "http://jetobe95.github.io/gh-pages-monkey",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.1.1",
"husky": "^1.0.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-redux": "^5.0.7",
"react-scripts": "1.1.5",
"react-timeago": "^4.1.9",
"redux": "^4.0.0",
"scrollreveal": "^4.0.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^1.2.0"
}
}