-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "Measureland",
"version": "2.0.0",
"scripts": {
"start": "svelte-kit dev --port=8080",
"build": "svelte-kit build",
"preview": "svelte-kit preview --port=8080",
"prettier:check": "prettier --check --plugin-search-dir=. .",
"prettier:format": "prettier --write --plugin-search-dir=. .",
"lint:check": "eslint src/ --ignore-path .prettierignore",
"lint:check-back-end": "eslint back-end/ --ignore-path .prettierignore",
"lint:fix": "eslint src/ --ignore-path .prettierignore --fix",
"lint:fix-back-end": "eslint back-end/ --ignore-path .prettierignore --fix",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@sveltejs/adapter-static": "^1.0.0-next.18",
"@sveltejs/kit": "next",
"autoprefixer": "^10.4.5",
"cssnano": "^5.1.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.4",
"mdsvex": "^0.10.5",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"prettier": "~2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.47.0",
"svelte-preprocess": "^4.10.6",
"tailwindcss": "^3.0.24"
},
"type": "module",
"dependencies": {
"eslint": "^8.14.0",
"esri-leaflet-geocoder": "^3.1.3",
"franc-min": "^6.0.0",
"leaflet": "^1.8.0",
"leaflet-draw": "^1.0.4",
"nouislider": "^15.5.1",
"polybooljs": "^1.2.0",
"svelte-focus-trap": "^1.2.0",
"svelte-i18n": "^3.4.0",
"swiper": "^8.1.4"
}
}