-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.02 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
{
"$schema": "https://www.schemastore.org/package.json",
"name": "sist",
"version": "0.1.0",
"description": "SIST | Ship Intelligence & Suspicion Tracker | AIS Monitoring & Analysis | Detects Suspicious Vessel Activity & Anomalies",
"author": "Tristan Budd <https://github.com/tristanbudd>",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"repository": {
"type": "git",
"url": "https://github.com/tristanbudd/sist.git"
},
"bugs": {
"url": "https://github.com/tristanbudd/sist/issues"
},
"homepage": "https://github.com/tristanbudd/sist#readme",
"keywords": [
"sist",
"ship-tracker",
"ais",
"ais-monitoring",
"maritime-intelligence",
"anomaly-detection",
"laravel",
"react",
"inertiajs",
"vite"
],
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0",
"php": ">=8.3.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint resources/js",
"lint:fix": "eslint resources/js --fix",
"format": "prettier --write \"resources/**/*.{js,jsx,ts,tsx,css}\"",
"format:check": "prettier --check \"resources/**/*.{js,jsx,ts,tsx,css}\"",
"format:php": "php vendor/bin/pint",
"format:php:test": "php vendor/bin/pint --test",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@inertiajs/react": "3.3.1",
"@types/leaflet": "^1.9.21",
"axios": "^1.17.0",
"leaflet": "^1.9.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-leaflet": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.5.0",
"concurrently": "^10.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"laravel-vite-plugin": "^3.1.0",
"lint-staged": "^17.0.7",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16"
},
"lint-staged": {
"resources/js/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"resources/css/**/*.css": [
"prettier --write"
],
"**/*.php": [
"php vendor/bin/pint"
]
},
"pnpm": {
"overrides": {
"brace-expansion": "2.0.1",
"minimatch": "9.0.3"
}
}
}