generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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",
"private": false,
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.0"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/playfair-display": "^5.0.1",
"@fontsource/ysabeau": "^5.0.1",
"@the-collab-lab/shopping-list-utils": "^2.2.0",
"feather-icons-react": "^0.6.2",
"firebase": "^9.17.2",
"framer-motion": "^10.12.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^1.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"vite": "^4.1.4",
"vite-plugin-pwa": "^0.14.4",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^0.29.2"
},
"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"
}
}