generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "smart-shopping-list-next",
"type": "module",
"private": false,
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.0"
},
"dependencies": {
"@the-collab-lab/shopping-list-utils": "^2.2.0",
"bootstrap": "^5.3.3",
"firebase": "^10.14.0",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.21",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^2.0.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/recommended": "^1.0.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"husky": "^9.1.6",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass-embedded": "^1.79.4",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.1.2"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"preview": "vite preview",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.{html,json,css,scss,md}": "prettier --cache --write"
}
}