-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
128 lines (128 loc) · 3.71 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
{
"name": "src",
"version": "1.0.6",
"private": true,
"homepage": "http://mariners.neracoos.org/",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@gulfofmaine/tsstac": "0.1.3",
"@reduxjs/toolkit": "^2.5.0",
"@sentry/nextjs": "^8.47.0",
"@spotlightjs/spotlight": "^2.8.1",
"@tanstack/react-query": "^5.62.10",
"@tanstack/react-query-devtools": "^5.62.10",
"@turf/bbox-polygon": "^7.1.0",
"@turf/boolean-contains": "^7.1.0",
"@turf/helpers": "^7.1.0",
"bootstrap": "^5.3.3",
"convert-units": "2.3.4",
"error": "10.4.0",
"highcharts": "^11.4.8",
"jsurl2": "^2.2.0",
"next": "14.2.15",
"next-nprogress-bar": "^2.4.2",
"ol": "^10.2.1",
"prop-types": "^15.8.1",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-jsx-highcharts": "^5.0.3",
"react-redux": "^9.2.0",
"react-select": "^5.9.0",
"react-use": "^17.6.0",
"reactstrap": "9.2.0",
"rlayers": "^3.2.0",
"sass": "^1.83.0",
"sharp": "^0.33.5"
},
"scripts": {
"dev": "next dev",
"start": "GENERATE_SOURCEMAP=false next dev",
"start-production": "next start",
"build": "next build",
"build-start": "next build && next start",
"test": "jest --verbose --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen 127.0.0.1:3000",
"test:speed": "playwright test speed",
"docs": "typedoc",
"test-with-coverage": "jest --verbose --coverage && cat ./coverage/lcov.info",
"test-ci": "jest --verbose",
"types": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "next lint"
},
"devDependencies": {
"@estruyf/github-actions-reporter": "^1.9.2",
"@next/eslint-plugin-next": "^14.2.15",
"@playwright/test": "^1.49.1",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.3.3",
"@storybook/nextjs": "^8.4.7",
"@storybook/test": "^8.3.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/geojson": "^7946.0.15",
"@types/highcharts": "^7.0.0",
"@types/history": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-responsive": "^8.0.8",
"@types/react-test-renderer": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.15",
"eslint-plugin-storybook": "^0.11.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "3.0.3",
"playwright-performance": "^1.0.3",
"react-test-renderer": "18.3.1",
"redux-mock-store": "1.5.5",
"storybook": "^8.3.3",
"typescript": "^5.7.2",
"wait-on": "8.0.1"
},
"prettier": {
"semi": false,
"printWidth": 120
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended",
"next"
],
"ignorePatterns": [
"**/*.stories.tsx"
],
"rules": {
"@next/next/no-img-element": "off"
}
}
}