-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
133 lines (133 loc) · 4.16 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
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "client",
"version": "2.9.7",
"private": true,
"scripts": {
"build": "next build",
"build-and-start": "next build && next start",
"cy": "cypress open --env nock=true",
"cy:nockless": "start-server-and-test dev http://localhost:3000 cypress:open",
"cypress:run": "cypress run",
"cypress:run:component": "cypress run --component",
"cypress:run:fast": "cypress run --env nock=true --spec=cypress/tests/integration/**/*.cy.js --config video=false",
"dev": "next dev",
"dev:mock": "NEXT_PUBLIC_API_MOCKING=enabled npm run dev",
"eject": "react-scripts eject",
"format": "npm run prettier && npm run lint:fix",
"lint": "eslint . --cache",
"lint:errors": "eslint . --quiet --cache",
"lint:fix": "eslint . --fix --cache",
"mock-server": "prism mock ./doc/web-map-api.yaml",
"prepare": "is-ci || husky install",
"prettier": "prettier ./ --write",
"prettier:check": "prettier --check src/",
"start": "next start",
"test": "jest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"@hello-pangea/dnd": "^16.0.1",
"@mui/icons-material": "^5.0.5",
"@mui/lab": "^5.0.0-alpha.54",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@mui/x-date-pickers": "^5.0.0-beta.6",
"@react-keycloak/ssr": "^3.3.0",
"@react-keycloak/web": "^3.4.0",
"axios": "^0.25.0",
"clsx": "^1.1.1",
"cookie": "^0.4.2",
"copy-to-clipboard": "^3.3.2",
"country-flag-icons": "^1.4.19",
"d3": "^7.3.0",
"expect-runtime": "^0.4.0",
"i18n-iso-countries": "^7.2.0",
"jscodeshift": "^0.14.0",
"keycloak-connect": "^17.0.1",
"keycloak-js": "^10.0.1",
"leaflet": "^1.7.1",
"leaflet-utfgrid": "git+https://github.com/dadiorchen/Leaflet.UTFGrid.git",
"leaflet.gridlayer.googlemutant": "^0.12.1",
"loglevel": "^1.7.0",
"marked": "^4.1.1",
"moment": "^2.29.1",
"next": "^12.1.0",
"next-images": "^1.8.1",
"oidc-client-ts": "^2.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-best-gradient-color-picker": "^2.0.21",
"react-dom": "^17.0.2",
"react-oidc-context": "^2.3.1",
"react-world-map": "^2.4.0",
"source-map-explorer": "^2.5.2",
"treetracker-web-map-core": "^2.7.4",
"tss-react": "^2.0.3",
"url-join-ts": "^1.0.5",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@cypress/react": "^5.10.3",
"@cypress/webpack-dev-server": "^1.7.0",
"@cypress/webpack-preprocessor": "^5.4.3",
"@next/eslint-plugin-next": "^12.0.7",
"@stoplight/prism-cli": "^4.4.2",
"@svgr/cli": "^6.3.1",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.4.1",
"axios-mock-adapter": "^1.21.1",
"concurrently": "^6.3.0",
"cypress": "^12.14.0",
"cypress-watch-and-reload": "^1.5.4",
"dotenv": "^16.0.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"jest": "^27.5.0",
"lint-staged": "^11.2.6",
"msw": "^0.36.8",
"next-router-mock": "^0.6.3",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"sort-package-json": "^1.53.1",
"start-server-and-test": "^1.14.0",
"webpack": "^5.64.1",
"webpack-dev-server": "^4.6.0"
},
"engines": {
"node": ">=16"
},
"msw": {
"workerDirectory": "public"
},
"proxy": "http://127.0.0.1:3001"
}