generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "smart-shopping-list-next",
"private": false,
"engines": {
"node": "^16.15.0",
"npm": "^8.11.0"
},
"dependencies": {
"@the-collab-lab/shopping-list-utils": "^2.0.0",
"firebase": "^9.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^1.4.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@vitejs/plugin-react": "^2.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.6.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.4",
"vite": "^3.0.2",
"vite-plugin-pwa": "^0.12.3",
"vite-plugin-svgr": "^2.2.0",
"vitest": "^0.18.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"
}
}