-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.47 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
{
"name": "gliders",
"type": "module",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Glider data visualization \u2014 IOOS Glider DAC and raw Slocum files, in the browser",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro",
"data:deployments": "node scripts/fetch-deployments.mjs",
"data:tracks": "node scripts/fetch-tracks.mjs",
"check:docs": "node scripts/check-docs.mjs",
"check:vendored": "node scripts/check-vendored.mjs",
"test:teos10": "node scripts/test-teos10.mjs",
"test:erddap": "node scripts/test-erddap.mjs",
"test:plot": "node scripts/test-plot.mjs",
"test:tracks": "node scripts/test-tracks.mjs",
"test:derive": "node scripts/test-derive.mjs",
"test:contrast": "node scripts/test-contrast.mjs",
"test:pages": "node scripts/test-pages.mjs",
"verify": "npm run build && npm run check && npm run check:docs && npm run test:teos10 && npm run test:erddap && npm run test:plot && npm run test:tracks && npm run test:derive && npm run test:contrast && npm run test:pages"
},
"dependencies": {
"@fontsource-variable/inter": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"astro": "^7.0.7",
"leaflet": "^1.9.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/leaflet": "^1.9.22",
"jsdom": "^30.0.1",
"typescript": "^6.0.3"
}
}