-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
81
82
83
84
{
"name": "dev-location",
"description": "An app to find and save devs by location built with ReactJS and Redux",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-regular-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.18.0",
"dotenv": "^7.0.0",
"mapbox-gl": "^0.53.1",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-map-gl": "^4.1.1",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-toastify": "^5.0.0-rc.6",
"reactotron-react-js": "^3.0.1",
"reactotron-redux": "^3.1.0",
"reactotron-redux-saga": "^4.2.1",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"reduxsauce": "^1.0.1",
"styled-components": "^4.2.0"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"husky": "^1.3.1"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"lint": "./node_modules/.bin/eslint ./src --ext .js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joaaoeu/dev-location.git"
},
"keywords": [
"react",
"reactJS",
"redux",
"redux-saga",
"reactotron",
"styled-components",
"eslint",
"husky",
"ducks-pattern",
"reduxsauce"
],
"author": "João Vitor Barbosa Brandão <[email protected]> (https://www.joaao.eu/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaaoeu/dev-location/issues"
},
"homepage": "https://joaaoeu.github.io/dev-location"
}