-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.29 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lunch-picker",
"version": "1.14.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@sentry/react": "^6.15.0",
"@sentry/tracing": "^6.15.0",
"axios": "^0.21.2",
"firebase": "^7.6.1",
"i18next": "^19.0.3",
"is_js": "^0.9.0",
"leaflet": "^1.6.0",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-favicon": "^0.0.17",
"react-ga": "^2.7.0",
"react-i18next": "^11.2.7",
"react-image-gallery": "^1.0.3",
"react-leaflet": "^2.6.1",
"react-normalize": "^0.4.4",
"react-reveal": "^1.2.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-select": "^3.0.8",
"react-speech-recognition": "^3.8.2",
"react-stripe-elements": "^6.0.1",
"react-table": "^7.0.0-rc.15",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^8.0.3",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.3",
"@types/leaflet": "^1.7.2",
"@types/lodash": "^4.14.165",
"@types/react": "^16.9.41",
"@types/react-image-gallery": "^0.9.3",
"@types/react-leaflet": "^2.5.2",
"@types/react-router-dom": "^5.1.5",
"@types/react-select": "^3.0.13",
"@types/react-speech-recognition": "^3.6.0",
"@types/react-stripe-elements": "^6.0.4",
"@types/react-table": "^7.0.19",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"codecov": "^3.6.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"git-cz": "^4.8.0",
"husky": "^8.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"standard-version": "^9.3.2",
"typescript": "^4.1.2"
},
"scripts": {
"dev": "PORT=5100 react-scripts start",
"production": "yarn run build && yarn run start",
"start": "serve -s build",
"build": "react-scripts build",
"test": "react-scripts test --coverage",
"eject": "react-scripts eject",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier --write '*/**/*.{ts,tsx}'",
"deploy-firebase": "rimraf build && yarn run build && firebase deploy",
"commit": "git-cz",
"release": "standard-version",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}