generated from the-collab-lab/smart-shopping-list-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.0",
"@the-collab-lab/shopping-list-utils": "^2.2.0",
"@chakra-ui/react": "^1.8.9",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"firebase": "^10.5.0",
"framer-motion": "^3.0.0",
"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-router-dom": "^5.2.0"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider 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"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"cypress": "^13.3.2",
"react-scripts": "^5.0.1"
},
"overrides": {
"@svgr/webpack": "^6.2.1"
}
}