-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.58 KB
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
{
"name": "cioos-metadata-entry-form",
"homepage": "https://cioos-siooc.github.io/metadata-entry-form/",
"version": "1.1.0",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@citation-js/date": "^0.5.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@geoman-io/leaflet-geoman-free": "^2.19.2",
"@mui/icons-material": "^7.3.7",
"@mui/lab": "^7.0.0",
"@mui/material": "^7.3.7",
"@mui/x-data-grid": "^8.27.1",
"@mui/x-date-pickers": "^8.27.0",
"@react-leaflet/core": "^3.0.0",
"@sentry/react": "^10.38.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^14.5.0",
"axios": "^1.6.7",
"buffer": "^6.0.3",
"cheerio": "^1.2.0",
"citation-js": "^0.7.22",
"clsx": "^2.1.1",
"core-js": "^3.48.0",
"crypto-browserify": "^3.12.0",
"date-fns": "^4.1.0",
"file-saver": "^2.0.5",
"firebase": "^12.8.0",
"firebase-admin": "^13.6.0",
"firebase-functions": "^6.3.2",
"https-browserify": "^1.0.0",
"javascript-time-ago": "^2.5.12",
"just-debounce-it": "^3.2.0",
"leaflet": "^1.9.4",
"nunjucks": "^3.2.3",
"path-browserify": "^1.0.1",
"querystring-es3": "^0.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-helmet-async": "^2.0.5",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"react-time-ago": "^7.4.1",
"regenerator-runtime": "^0.14.1",
"remark-gfm": "^4.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tss-react": "^4.9.20",
"url": "^0.11.3",
"use-debounce": "^10.1.0",
"util": "^0.12.5",
"uuid": "^13.0.0",
"validator": "^13.6.0",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.0.0",
"@types/markdown-it": "14.1.2",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"cross-env": "^7.0.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"gh-pages": "^6.3.0",
"globals": "^17.3.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.0",
"prettier": "^3.4.0",
"vite": "^6.3.5",
"vitest": "^4.0.18",
"whatwg-fetch": "3.6.20",
"yaml": "2.8.2"
},
"scripts": {
"postinstall": "node scripts/ensure-data-file.mjs",
"dev": "vite",
"start": "vite",
"prebuild": "node scripts/fetch-github-releases.mjs",
"build": "vite build",
"preview": "vite preview",
"test": "TZ=UTC vitest",
"test:watch": "TZ=UTC vitest --watch",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test:coverage": "TZ=UTC vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\" --ignore-path .gitignore"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"overrides": {
"fast-xml-parser": "5.3.4"
}
}