-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.84 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.84 KB
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
93
94
95
96
97
98
99
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"axios": "^0.19.0",
"focus-trap-react": "^6.0.0",
"fontfaceobserver": "2.0.13",
"history": "4.7.2",
"intl": "1.2.5",
"jwt-decode": "2.2.0",
"lodash": "^4.17.15",
"polished": "1.9.3",
"prop-types": "15.6.2",
"pure-react-carousel": "^1.24.1",
"react": "^16.12.0",
"react-accessible-accordion": "^3.0.1",
"react-day-picker": "7.1.10",
"react-dom": "^16.12.0",
"react-ga": "2.5.3",
"react-google-maps": "9.4.5",
"react-helmet": "5.2.0",
"react-icons": "^4.3.1",
"react-intl": "2.4.0",
"react-loadable": "5.4.0",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"react-scripts": "3.2.0",
"reactstrap": "^8.4.0",
"recompose": "0.27.1",
"redux": "4.0.5",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"sanitize.css": "11.0.0",
"styled-components": "3.3.3",
"styled-components-grid": "^2.2.2"
},
"scripts": {
"build": "react-scripts build",
"cmt": "git-cz",
"eject": "react-scripts eject",
"format": "prettier --single-quote --no-semi --trailing-comma none --tab-width=2 --write \"js/**/*.{js,jsx}\"",
"lint": "eslint **/*.{js,jsx} --quiet",
"precommit": "lint-staged",
"start": "set HTTPS=true && react-scripts start",
"test": "react-scripts test --env=jsdom"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-styled-components": "1.5.1",
"babel-plugin-tailwind-components": "^0.5.10",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-redux-saga": "1.1.3",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.0",
"prettier": "1.13.7"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --no-semi --trailing-comma none --tab-width=2 --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}