-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.08 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
{
"name": "land-map-app",
"version": "0.1.0",
"private": true,
"homepage": "/app",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@gocardless/react-dropin": "^0.3.0",
"@mapbox/mapbox-gl-draw": "git+https://github.com/mapbox/mapbox-gl-draw.git#84e35b7aa308c69a44b483296baa6ac1c6dc9db8",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@mapbox/mapbox-gl-geocoder": "^4.7.4",
"@turf/turf": "^6.5.0",
"axios": "^0.26.0",
"babel-loader": "^8.2.4",
"babel-preset-react-app": "^10.0.1",
"convert-units": "^2.3.4",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "6.6.0",
"dotenv-webpack": "^7.1.0",
"html-webpack-plugin": "5.5.0",
"immutability-helper": "^3.1.1",
"jest": "27.5.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.7.0",
"moment": "^2.29.1",
"path": "^0.12.7",
"react": "^17.0.2",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^4.0.11",
"react-ga": "^3.3.0",
"react-mapbox-gl": "^5.1.1",
"react-mapbox-gl-draw": "^2.0.4",
"react-motion": "^0.5.2",
"react-redux": "^7.2.6",
"react-responsive": "^9.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.2",
"react-tooltip": "^4.2.21",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"sass": "^1.72.0",
"sass-loader": "^13.3.3",
"socket.io-client": "^4.7.4",
"style-loader": "3.3.1",
"sweetalert2": "^11.4.0",
"usehooks-ts": "^3.0.2",
"uuid": "^9.0.0",
"webpack": "^5.88.1",
"webpack-dev-server": "^4.8.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development npx webpack serve --config ./config/webpack.config.common.js --mode=development",
"build": "cross-env NODE_ENV=production npx webpack build --config ./config/webpack.config.common.js --mode=production",
"test": "cross-env NODE_ENV=test node scripts/test.js --env=jsdom"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"cross-env": "^7.0.3",
"webpack-cli": "^4.9.2"
}
}