-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 772 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 772 Bytes
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
{
"name": "base-leaflet-map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "prettier --check .",
"format": "prettier --write .",
"lint:staged": "npx lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"sass": "^1.61.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
},
"dependencies": {
"@types/leaflet": "^1.9.3",
"husky": "^8.0.3",
"leaflet": "^1.9.3"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "npx tslint"
}
}