generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.39 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
{
"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",
"firebase": "^10.1.0",
"i18next": "^23.11.3",
"i18next-browser-languagedetector": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"react-router-dom": "^6.14.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@nabla/vite-plugin-eslint": "^1.5.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.19",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.38",
"prettier": "^3.0.1",
"tailwindcss": "^3.4.1",
"vite": "^4.4.8",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.34.1"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"preview": "vite preview",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --fix"
],
"*.{html,js,jsx,ts,tsx,json,css,scss,md}": "prettier --cache --write"
}
}