forked from City-of-Helsinki/servicemap-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.94 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "servicemap-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@datapunt/matomo-tracker-js": "^0.5.1",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@formatjs/intl-pluralrules": "^1.5.9",
"@formatjs/intl-relativetimeformat": "^4.5.16",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.7.0",
"@mui/styles": "^5.7.0",
"@mui/utils": "^5.10.6",
"@sentry/node": "^5.27.5",
"@sentry/react": "^5.25.0",
"@turf/area": "^6.5.0",
"@turf/boolean-equal": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/boolean-within": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/flip": "^6.5.0",
"@turf/point-on-feature": "^6.5.0",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.5.0",
"core-js": "^3.25.1",
"dotenv": "^8.2.0",
"express": "^4.18.1",
"express-sitemap": "^1.8.0",
"intl": "^1.2.5",
"isomorphic-style-loader": "^5.1.0",
"leaflet": "1.7.1",
"leaflet.markercluster": "^1.4.1",
"node-fetch": "^2.6.7",
"node-schedule": "^2.0.0",
"proj4leaflet": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-helmet": "^5.2.1",
"react-intl": "^5.25.1",
"react-leaflet": "^3.2.1",
"react-redux": "^8.0.5",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"regenerator-runtime": "^0.13.7",
"reselect": "^4.1.6",
"sitemap": "^6.4.0",
"urijs": "^1.19.11",
"whatwg-fetch": "^3.5.0",
"zlib": "^1.0.5"
},
"scripts": {
"start": "node dist",
"build": "NODE_ENV=production BABEL_ENV=production webpack --mode production ",
"testBuild": "NODE_ENV=development BABEL_ENV=development webpack --mode development",
"test": "jest test",
"eject": "react-scripts eject",
"dev": "NODE_ENV=development BABEL_ENV=development webpack --watch --progress & nodemon dist",
"browserTest": "node browserTests/browserTestRunner.js",
"browserTestCLI": "testcafe chrome:headless browserTests/*/*Test.js -q attemptLimit=5,successThreshold=1 --app \"node dist\"",
"production": "NODE_ENV=production BABEL_ENV=production webpack --progress --mode production && node dist"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie > 0",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@emotion/server": "^11.10.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^14.1.1",
"axe-testcafe": "^1.1.0",
"eslint": "8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.5.0",
"git-revision-webpack-plugin": "5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.1",
"jest-environment-jsdom": "^29.5.0",
"nodemon": "^2.0.20",
"redux-mock-store": "^1.5.4",
"testcafe": "3.1.0",
"testcafe-react-selectors": "^4.1.5",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy",
"isomorphic-style-loader/withStyles": "<rootDir>/__mocks__/withStyles.js"
},
"setupFiles": [
"jest-canvas-mock",
"./jestSetup.js"
],
"setupFilesAfterEnv": [
"./setupTests.js"
],
"testEnvironment": "jsdom"
}
}