-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "weatherclock",
"version": "0.0.0",
"homepage": "https://walles.github.io/weatherclock",
"repository": {
"type": "git",
"url": "https://github.com/walles/weatherclock.git"
},
"bugs": {
"url": "https://github.com/walles/weatherclock/issues"
},
"author": "Johan Walles <[email protected]>",
"private": false,
"dependencies": {
"@material-ui/core": "4.4.2",
"gh-pages": "^5.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-page-visibility": "^4.1.1",
"react-scripts": "^5.0.1",
"typescript": "^3.9.6"
},
"scripts": {
"start": "REACT_APP_GIT_SHA=`git rev-parse HEAD` react-scripts start",
"build": "REACT_APP_GIT_SHA=`git rev-parse HEAD` react-scripts build",
"lint": "eslint src/*.js* && eslint src/*.ts*",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"consistent-return": 2,
"no-var": 1,
"curly": 1
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}