-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "footprint",
"version": "1.13.0",
"engines": {
"node": "11.12.0"
},
"private": true,
"homepage": "http://kthfootprint.herokuapp.com/",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"bootstrap": "^4.3.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"firebase": "^6.5.0",
"google-maps-react": "^2.0.2",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"lodash": "^4.17.14",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-bootstrap": "^1.0.0-beta.12",
"react-device-detect": "^1.9.10",
"react-dom": "^16.8.6",
"react-easy-swipe": "^0.0.18",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.0",
"react-spinners": "^0.5.4",
"react-tooltip": "^3.10.0",
"react-transition-group": "^4.3.0",
"recompose": "^0.30.0",
"styled-components": "^4.3.2"
},
"resolutions": {
"jest": "24.7.1",
"babel-jest": "24.7.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prettier": "prettier \"**/*.{js,jsx,css,json}\"",
"format": "yarn prettier -- --write",
"lint": "eslint src",
"lint:fix": "yarn lint -- --fix",
"validate": "yarn prettier -- --list-different && yarn lint"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,css}": [
"yarn format",
"yarn lint:fix",
"git add"
]
}
}