forked from Project-PLATEAU/Earthquake-simulation-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.53 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
{
"name": "@mosiri/admin",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest",
"clean": "rm -rf .svelte-kit dist"
},
"dependencies": {
"@aws-amplify/auth": "^6.10.2",
"@aws-sdk/client-batch": "^3.738.0",
"@aws-sdk/client-dynamodb": "^3.738.0",
"@aws-sdk/client-s3": "^3.738.0",
"@aws-sdk/credential-providers": "^3.738.0",
"@aws-sdk/lib-dynamodb": "^3.738.0",
"@aws-sdk/s3-request-presigner": "^3.726.0",
"@deck.gl/mapbox": "^9.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/svelte-fontawesome": "^0.2.3",
"@maplibre/maplibre-gl-geocoder": "^1.5.0",
"@melt-ui/svelte": "^0.83.0",
"@mosiri/aws-client": "workspace:*",
"@mosiri/shared": "workspace:*",
"@mosiri/ui": "workspace:*",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@turf/turf": "^6.5.0",
"@watergis/maplibre-gl-terradraw": "^0.6.6",
"aws-amplify": "^6.12.2",
"aws-jwt-verify": "^4.0.1",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"deck.gl": "^9.0.0",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.5",
"maplibre-gl": "^4.7.1",
"pmtiles": "^3.2.0",
"ramda": "^0.30.1",
"svelte-chartjs": "^3.1.5",
"svelte-hero-icons": "^5.2.0",
"svelte-maplibre-gl": "^0.1.3",
"tailwind-merge": "^2.5.0",
"uuid": "^14.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@melt-ui/pp": "^0.3.2",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@types/eslint": "^9.6.1",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/ramda": "^0.30.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.53.5",
"svelte-check": "^4.1.2",
"tailwindcss": "^3.4.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.19.0",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}