generated from the-collab-lab/smart-shopping-list-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "smart-shopping-list",
"version": "0.1.0",
"private": true,
"dependencies": {
"@the-collab-lab/shopping-list-utils": "^2.2.0",
"@testing-library/react": "^11.0.4",
"dayjs": "^1.9.4",
"firebase": "^7.22.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firestore": "^1.0.1",
"react-hook-form": "^6.9.2",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"cypress": "^4.12.1",
"react-scripts": "5.0.1"
},
"overrides": {
"@svgr/webpack": "^6.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "CI= react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}