-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "MapMyRideMapper",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "MapMyRide Mapper",
"main": "index.js",
"homepage": "TODO.com",
"scripts": {
"start": "yarn dev",
"dev": "vite --open",
"build": "vite build",
"preview": "yarn build && vite preview --open",
"lint": "yarn format && yarn ts:check && yarn eslint && yarn format:check",
"ts:check": "tsc",
"eslint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"get-data": "npx tsx ./src/downloadWorkoutGeoJsons.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvandercar-vt/TODO"
},
"keywords": [
"MapMyRide"
],
"author": "Blake Vandercar",
"license": "ISC",
"bugs": {
"url": "https://github.com/bvandercar-vt/TODO/issues"
},
"devDependencies": {
"@types/leaflet": "^1.9",
"@types/leaflet-polylinedecorator": "^1.6",
"@types/lodash": "^4",
"@types/luxon": "^3.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/xmldom": "^0.1",
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"postcss": "^8",
"postcss-load-config": "^6",
"prettier": "^3",
"type-fest": "^4",
"typescript": "^5",
"typescript-eslint": "^8",
"vite": "^5.4"
},
"dependencies": {
"@tmcw/togeojson": "^5.8",
"classnames": "^2",
"dotenv": "^16",
"leaflet": "^1.9",
"leaflet-polylinedecorator": "^1.6",
"lodash": "^4",
"luxon": "^3.5",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4",
"sanitize-filename": "^1.6",
"xmldom": "^0.6"
}
}