-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "1km",
"dependencies": {
"@reach/combobox": "^0.11.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.7.3",
"firebase": "^8.1.1",
"geofirestore": "^4.3.0",
"geolib": "^3.3.1",
"image-blob-reduce": "^2.0.0",
"leaflet": "1.6.0",
"mdx.macro": "^0.2.9",
"mobx": "^6.0.1",
"mobx-react-lite": "^3.0.1",
"nanoid": "^3.1.12",
"pica": "^6.1.1",
"query-string": "^6.13.5",
"react": "^16.13.1",
"react-awesome-reveal": "^3.3.1",
"react-aws-s3": "^1.3.0",
"react-burger-menu": "^2.9.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.8.6",
"react-hooks-visible": "^1.1.1",
"react-leaflet": "^2.7.0",
"react-modal": "^3.11.2",
"react-recaptcha": "^2.3.10",
"react-recaptcha-v3": "^2.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"react-spring": "^8.0.27",
"styled-components": "^5.2.0",
"timeago-react": "^3.0.1",
"use-places-autocomplete": "^1.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:e2e": "start-server-and-test start http://localhost:3000 cy:run",
"cy:run": "cypress run",
"eject": "react-scripts eject",
"format": "prettier --write .",
"deploy": "npm run build && firebase deploy --only hosting"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "prettier --write"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"devDependencies": {
"cypress": "^5.3.0",
"cypress-wait-until": "^1.7.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.5"
}
}