-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 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
{
"name": "travel-map",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@bugsnag/js": "^7.2.0",
"@bugsnag/plugin-react": "^7.2.0",
"@urbica/react-map-gl": "^1.12.3",
"@urbica/react-map-gl-cluster": "^0.2.0",
"apollo-boost": "^0.4.4",
"compression": "^1.7.4",
"data.js": "^0.12.11",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"history": "^4.10.1",
"js-levenshtein": "^1.1.6",
"jwt-decode": "^2.2.0",
"lazy": "^1.0.11",
"lodash": "^4.17.15",
"lodash.flowright": "^3.5.0",
"mapbox-gl": "^1.6.1",
"node-sass": "^4.13.0",
"npm-check": "^5.9.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-gravatar": "^2.6.3",
"react-map-gl": "5.2.3",
"react-map-gl-geocoder": "^2.0.11",
"react-mapbox-gl": "^4.8.6",
"react-meta-tags": "^0.7.4",
"react-router-dom": "^5.1.2",
"react-scripts": "3.0.1",
"react-simple-maps": "^0.12.1",
"socket.io-client": "^2.3.0",
"supercluster": "^7.0.0",
"sweetalert2": "^10.14.0"
},
"scripts": {
"start": "node --max-old-space-size=4096 server.js",
"dev": "react-scripts --max-old-space-size=4096 start",
"build": "react-scripts --max-old-space-size=4096 build",
"test": "react-scripts test",
"update-snapshots": "react-scripts test --updateSnapshot",
"eject": "react-scripts eject",
"lint": "eslint src",
"stats": "source-map-explorer 'build/static/js/*.js' --json tree.json",
"analyze": "node src/analyze.js"
},
"husky": {
"hooks": {}
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"setupFiles": [
"./src/setupTests.js"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@welldone-software/why-did-you-render": "^5.0.0-alpha.2",
"babel-jest": "^24.8.0",
"enzyme-to-json": "^3.4.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-jest": "^23.8.2",
"webpack-bundle-analyzer": "^4.4.0"
}
}