-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "osm-address-collector",
"type": "module",
"dependencies": {
"@mantine/core": "^5.10.3",
"@mantine/hooks": "^5.10.3",
"@tabler/icons": "^2.3.0",
"@tabler/icons-react": "^2.2.0",
"@types/file-saver-es": "^2.0.1",
"@types/leaflet": "^1.9.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^3.1.0",
"file-saver-es": "^2.0.5",
"immer": "^9.0.19",
"leaflet": "^1.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.0",
"type-fest": "^3.5.6",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"zustand": "^4.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"prettier": "^2.8.3",
"tsx": "^3.12.2",
"w3c-xmlserializer": "^4.0.0"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --host",
"test": "node --loader tsx --test test/*.test.ts",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"style": "prettier --check .",
"style-fix": "prettier --write .",
"types": "tsc",
"check": "npm run lint && npm run style && npm run types && npm test",
"prepare": "husky install"
}
}