-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.02 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.02 KB
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
{
"name": "osm-parking-tag-updater",
"private": true,
"version": "0.0.25",
"type": "module",
"scripts": {
"start": "vite --host 127.0.0.1",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"test": "vitest watch",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"check": "npm run type-check && npm run lint && npm run format && vitest run",
"deploy": "chmod +x ./deploy.sh && ./deploy.sh",
"prepare": "husky install"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-location": "^3.7.4",
"@tanstack/react-location-devtools": "^3.4.4",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-devtools": "^4.24.13",
"axios": "^1.3.4",
"clsx": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.3"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/ui": "^0.29.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"npm": "^9.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^0.29.2"
}
}