-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
112 lines (112 loc) · 3.36 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
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
103
104
105
106
107
108
109
110
111
112
{
"name": "vitamin",
"license": "MIT",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "vite build",
"commit": "cz",
"dev": "vite --open",
"preview": "vite preview",
"preview:test": "start-server-and-test preview http://localhost:4173",
"test": "vitest",
"test:ci": "vitest run",
"test:e2e": "pnpm preview:test 'cypress open'",
"test:e2e:headless": "pnpm preview:test 'cypress run'",
"test:e2e:ci": "vite build && pnpm preview:test 'cypress run --record'",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"run-tsc": "tsc",
"run-eslint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx .",
"run-stylelint": "stylelint --cache --fix --ignore-path .gitignore **/*.css",
"lint": "run-p run-tsc run-eslint run-stylelint",
"validate": "run-p lint test:ci test:e2e:headless"
},
"dependencies": {
"@react-hookz/web": "24.0.4",
"@tanstack/react-query": "5.59.16",
"leaflet": "1.9.4",
"nanoid": "5.0.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-leaflet": "4.2.1",
"react-router-dom": "6.27.0"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "2.0.4",
"@tailwindcss/forms": "0.5.9",
"@testing-library/cypress": "10.0.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/css-mediaquery": "0.1.4",
"@types/leaflet": "1.9.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/testing-library__jest-dom": "6.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-istanbul": "2.1.4",
"autoprefixer": "10.4.20",
"commitizen": "4.3.1",
"css-mediaquery": "0.1.2",
"cypress": "13.15.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-prefer-function-component": "3.3.0",
"eslint-plugin-testing-library": "6.4.0",
"eslint-plugin-unicorn": "56.0.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"msw": "2.6.0",
"npm-run-all2": "7.0.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"start-server-and-test": "2.0.8",
"stylelint": "15.11.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "35.0.0",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-pwa": "0.20.5",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.4",
"whatwg-fetch": "3.6.20",
"workbox-build": "7.3.0",
"workbox-window": "7.3.0"
},
"browserslist": {
"production": "Edge >= 18, Firefox >= 60, Chrome >= 61, Safari >= 11, Opera >= 48",
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"lint-staged": {
"*": "prettier -uw --cache",
"*.css": "stylelint --cache --fix",
"*.{ts,tsx}": [
"eslint --cache --fix",
"vitest related --run --coverage=false"
]
},
"pnpm": {
"overrides": {
"headers-polyfill": "4.0.3"
}
}
}