This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
92 lines (92 loc) · 2.39 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
85
86
87
88
89
90
91
92
{
"name": "community-connect",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.21",
"@fortawesome/free-brands-svg-icons": "5.10.1",
"@fortawesome/free-solid-svg-icons": "5.10.1",
"@fortawesome/react-fontawesome": "0.1.4",
"bootstrap": "4.3.1",
"classnames": "2.2.6",
"is-url": "1.2.4",
"jquery": "3.4.1",
"lodash": "4.17.15",
"node-sass": "4.12.0",
"popper.js": "1.15.0",
"prop-types": "15.7.2",
"query-string": "6.8.2",
"react": "16.9.0",
"react-beautiful-dnd": "11.0.5",
"react-collapsible": "2.6.0",
"react-dom": "16.9.0",
"react-fontawesome": "1.6.1",
"react-google-maps": "9.4.5",
"react-read-more-less": "0.1.6",
"react-redux": "7.1.0",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-testing-library": "8.0.1",
"reactstrap": "8.0.1",
"recompose": "0.30.0",
"redux": "4.0.4",
"redux-immutable-state-invariant": "2.1.0",
"redux-thunk": "2.3.0",
"sass-loader": "7.2.0",
"source-map-explorer": "2.0.1",
"tabletop": "1.5.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "5.10.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint-config-airbnb": "18.0.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"husky": "3.0.3",
"jest-emotion": "10.0.14",
"lint-staged": "9.2.1",
"prettier": "1.18.2",
"react-scripts": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"prettier": {
"trailingComma": "es5"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}